// 初始化socket
socket = new Socket(InetAddress.getByName(sip), sport);
InputStream sin = socket.getInputStream();
OutputStream ops = socket.getOutputStream();
// 發送
DataOutputStream dos=new DataOutputStream(ops);
dos.write(sendbyte);
// 接收
DataInputStream dis = new DataInputStream(sin);
byte[] onerec = new byte[1024];
int reclen = -1;
reclen = dis.read(onerec,0,1024);
問題:
鏈接和發送都正常,執行到接收的時候,dis.read()異常,總之只要開始操做sin確定就異常退出了,
抓包顯示服務器返回了數據包,但在inputStream變量的跟蹤結果顯示count=0。