我有 2 个应用程序。一个应用程序充当服务器,它是用java创建的,并使用以下代码连续发送桌面屏幕截图。
public void screenCap() throws IOException, AWTException{
Rectangle captureSize = new Rectangle(lastXpos, lastYpos, 500, 500);
img = robot.createScreenCapture(captureSize);
Robot robot=new Robot();
OutputStream os = null;
BufferedImage image = robot.createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
ImageIO.write(image, "jpg", os);
}
第二个应用程序是Android应用程序,它充当客户端应用程序,必须从输入流中连续读取上述图像流。
请帮我从客户端应用程序的输入流中读取图像。