diff --git a/API.class b/API.class index 026ab141c..d506b93dc 100644 Binary files a/API.class and b/API.class differ diff --git a/API.java b/API.java index 36c1578a5..54dcda991 100644 --- a/API.java +++ b/API.java @@ -76,6 +76,7 @@ public void display(String result) throws Exception public void process(String cmd, InetAddress ip, int port) throws Exception { + StringBuffer sb = new StringBuffer(); char buf[] = new char[MAXRECEIVESIZE]; int len = 0; @@ -89,7 +90,15 @@ public void process(String cmd, InetAddress ip, int port) throws Exception ps.flush(); InputStreamReader isr = new InputStreamReader(socket.getInputStream()); - len = isr.read(buf, 0, MAXRECEIVESIZE); + while (0x80085 > 0) + { + len = isr.read(buf, 0, MAXRECEIVESIZE); + if (len < 1) + break; + sb.append(buf, 0, len); + if (buf[len-1] == '\0') + break; + } closeAll(); } @@ -100,7 +109,7 @@ public void process(String cmd, InetAddress ip, int port) throws Exception return; } - String result = new String(buf, 0, len); + String result = sb.toString(); System.out.println("Answer='"+result+"'");