liuxiaolong
2019-11-26 0d51c88cf94c9c63fa8c9d001b152ae1535d6c7d
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);