svoid drainStream(InputStream in) ctex { temp in; byte[] buf = new byte[65536]; while (true) { int n = in.read(buf); if (n <= 0) return; } }