在我的服务器代码中,我向客户端发送不同的请求并获取响应,但只访问了第一个读取请求,在访问第二个读取语句期间,它无法读取数据字节,我的代码如下。
private static boolean Rt_Request(int id,Object client)throws Exception
{
int size=5;
byte[] buf=new byte[size];
char[] cbuf=new char[32];
int byteRead; Socket s=(Socket)client;
BufferedReader in1= new BufferedReader(new InputStreamReader(s.getInputStream()));
PrintStream out=new PrintStream(s.getOutputStream());
try {
buf[0]=0x02;
buf[1]=0x09;
buf[2]=0x01;
buf[3]=0x00;
buf[4]=0x03;
Thread.sleep(5000);
out.write(buf, 0, 5);
} catch(Exception e) {
System.out.println("Error Occured...."+e);
}
byteRead=0;
while(byteRead!=1) {
try {
byteRead=in1.read(cbuf, 0, 1);// Have problem on this line,here I am unable to read data bytes.
for(int i=0;i<byteRead;i++)
{
System.out.println(cbuf[i]);
}
if(byteRead==0)
{
System.out.println("Breaking.....");
return false;
}
}
catch(Exception e) {
System.out.println("Error Occured...."+e);
return false;
}
}
return true;
} catch(Exception e) {
System.out.println("System is not Connected..."+e);
return false;
}
几乎尝试过每个socket都没有关闭,read.available();, read.fully(); etc..unable得到解决方案。我已经在TimerTask类的run方法中编写了这个函数。 任何帮助将不胜感激
答案 0 :(得分:0)
javadocs表示BufferedReader #read(char [],int,int)返回: 读取的字符数,如果已到达流的末尾,则为-1
因为你做了
byteRead=in1.read(cbuf, 0, 1);
in
while(byteRead!=1)
将其更改为
while(byteRead != -1)
答案 1 :(得分:0)
byteRead=in1.read(cbuf, 0, 1);
此行只读入一个值,并且在您输入for循环之前不再调用它,您应该获得stdout中显示的读取值的1 println。
答案 2 :(得分:0)
如果没有可用的数据,read method of the underlying InputStream
将阻止(即挂起/等待)。
此方法将阻塞,直到输入数据可用,检测到文件结尾或引发异常。
我强烈怀疑是这种情况。
您可以通过在阅读器上调用in1.ready()
来查看此内容。
刷新输出缓冲区
out.flush();
写入字节后,或者它们可能在本地缓冲。
答案 3 :(得分:0)
read()
阻塞,直到至少有一个字节可用。也许你没有发送它,或者没有正确刷新它,或者你可能在同一个套接字上创建了多个BufferedReaders
。
bytesRead
后, NB read(cbuf, 0, 1).
永远不会为零