将捕获的图像从Java发送到Android时出错

时间:2013-04-28 15:35:37

标签: java android sockets

我有从java中的屏幕捕获图像的代码,我将最终捕获的图像作为BufferedImage对象并可以将其转换为ImageIcon

问题是当将该文件发送到android时无法将其读取为位图drawable。有谁回答过这个问题?

要发送的代码(Java)

            BufferedImage image = robot.createScreenCapture(rectangle);
        ImageIcon imageIcon = new ImageIcon(image);

        //Send captured screen to the server
        try {
            System.out.println("before sending image");      

            oos.writeObject(imageIcon);
            oos.reset(); //Clear ObjectOutputStream cache
            System.out.println("New screenshot sent");
        } catch (IOException ex) {
           ex.printStackTrace();
        }

Android接收器部件

Thread t= new Thread(new Runnable() {

        @Override
        public void run() {
            while (true) {


                try {

                    client= sc.accept();
                    is = client.getInputStream();

                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

                BitmapDrawable imageIcon = null;

                try {
                    ois = new ObjectInputStream(is);
                    imageIcon = (BitmapDrawable) ois.readObject();
                    //Drawable d = Drawable.createFromStream(is, null);
                    IV.setImageDrawable(imageIcon);
                } catch (OptionalDataException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (ClassNotFoundException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                System.out.println("New image recieved");


            }

        }

我得到的例外是它无法将imageIcon或BufferedImage转换为Bitmap drawable。

1 个答案:

答案 0 :(得分:0)

你不应该使用对象,因为oracle jvm与android的dalvik不同。 尝试将捕获的图像转换为原始字节并将这些字节发送到android。然后在android中将这个原始数据隐藏起来。