我正在制作一个视频聊天应用程序,该应用使用Java网络(又称套接字)将网络摄像头的图像发送到另一个客户端。
我的代码首先发送缓冲图像数据的长度,然后发送实际数据。服务器还首先读取一个int,然后读取数据本身。第一个图像有效,但是之后,数据输入流将负数读为长度。
服务器端:
frame = new JFrame();
while (true) {
try {
length = input.readInt();
System.out.println(length);
imgbytes = new byte[length];
input.read(imgbytes);
imginput = new ByteArrayInputStream(imgbytes);
img = ImageIO.read(imginput);
frame.getContentPane().add(new JLabel(new ImageIcon(img)));
frame.pack();
frame.setVisible(true);
}
catch(IOException e){
e.printStackTrace();
}
}
客户端:
while(true) {
try {
currentimg = webcam.getImage();
ImageIO.write(currentimg, "jpg", imgoutputstream);
imgbytes = imgoutputstream.toByteArray();
out.writeInt(imgbytes.length);
out.write(imgbytes);
} catch (IOException e) {
e.printStackTrace();
}
}
在客户端,您始终将新图像写入现有流。这导致每次迭代的数组大小都在增加。在Java中,int
的最大为2147483647
。如果增加了此整数,它会跳至最小值AUF int
(否定)(请参阅本文)。
因此,要解决此错误,您需要在编写下一个图像之前清除流,因此大小永远不大于整数的最大值。