我使用Java套接字(TCP,读取超时设置为30秒)与外部第三方服务器通信。 服务器数据是包含特定于应用程序的数据包的连续流。
但是从过去的几天开始,输入流返回的数据代表字节值0。
while (connectionIsValid){
final byte[] buffer= new byte[2];
in.read( buffer);
//Print buffer
//Log line
Byte[0] is 0
Byte[1] is 0
//POST processing if buffer bytes is not equal to OK.
//Other wise bypass post processing
}
- 没有异常记录。由于没有生成与流/套接字相关的异常,我知道java客户端套接字没有关闭/超时。
应用程序正在循环播放。
[更新]
private byte[] readWrapper(InputStream stream, int totalLen ) throws IOException {
byte[] buffer;
byte[] bufferingBuffer = new byte[0];
while ( totalLen != 0 ) {
buffer = new byte[totalLen];
final int read = stream.read( buffer );
if(read==-1 || read==0){
//throw exception
}
totalLen = totalLen - read;
buffer = ArrayUtils.subarray( buffer, 0, read );
bufferingBuffer = ArrayUtils.addAll( bufferingBuffer, buffer );
}
return bufferingBuffer;
}
答案 0 :(得分:0)
你并不需要这一切。 JDK已经包含了一个方法:
private byte[] readChunkedData(InputStream stream, int size) throws IOException {
byte[] buffer = new byte[size];
DataInputStream din = new DataInputStream(stream);
din.readFully(buffer);
return buffer;
}
此版本(a)有效(b)不需要第三方类,(c)如果流中没有EOFException
个字节则抛出size
。