liuxiaolong
2019-11-26 a32b949e5c5c7b9296da3dbf70efc10e68633526
src/main/java/com/cloud/count/listener/CountThread.java
@@ -39,8 +39,13 @@
            String msgStr = "";
            String xmlStr = "";
            People people = null;
            InputStream is = client.getInputStream();
            byte[] b;
            while (true) {
                msgStr = iReader.readLine();
                b = new byte[1024];
                is.read(b);
                msgStr = new String(b);
                System.out.println("msgStr:"+msgStr);
                sendAck(iWriter);
                xmlStr = XmlUtil.toXmlStr(msgStr);