0

我有 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应用程序,它充当客户端应用程序,必须从输入流中连续读取上述图像流。

请帮我从客户端应用程序的输入流中读取图像。

4

2 回答 2

0

BitmapFactory类的使用Bitmap decodeStream()方法。

public static Bitmap decodeStream (InputStream is)
Since: API Level 1

将输入流解码为位图。如果输入流为 null,或者不能用于解码位图,则该函数返回 null。流的位置将是读取编码数据后的位置。

例子:

    String urlOfBitmap = ""; // Url of inputstream
    Bitmap bitmap = null;
    try {
        InputStream in = new java.net.URL(urlOfBitmap).openStream();
        bitmap = BitmapFactory.decodeStream(in);
    } catch (Exception e) {
        Log.e("Error", e.getMessage());
        e.printStackTrace();
    }
于 2012-08-27T10:49:18.910 回答
0
FileInputStream in;                       
in = ...;
bitmap  = BitmapFactory.decodeStream(in);
于 2012-08-27T10:50:13.820 回答