2

我正在尝试显示我使用 screenCapture 从服务器端获取的图像,但在客户端(Android 模拟器)上通过异常“OutOfMemoryException”运行一段时间后不显示任何图像。所以我需要一些帮助。这是代码。

服务器

  public class Server
{
  private Connection con;
  private ScreenCapture sp;
  private Socket soc;
  private DataOutputStream out;
  private DataInputStream in;

public Server() throws IOException, AWTException
{
    con = new Connection();
    sp = new ScreenCapture();  
}

public void init() throws IOException, AWTException

{
    con.setPort(3838);
    ServerSocket serversocket = new ServerSocket(3838);
    soc = serversocket.accept();
    System.out.println("Accepted");
    out = new DataOutputStream(soc.getOutputStream());
    in = new DataInputStream(soc.getInputStream());
    while(true)
    {
    sp.CreateScreenCapture();
    out.write(sp.getScreenCapture());
    }

}

public void closeConnection() throws IOException
{
    soc.close();
}

public static void main(String[] arg)
{

        Server server = null;

    while(true)
    {
        try
        {
            server = new Server();
            server.init();

        }
        catch (IOException ex)
        {
            Logger.getLogger(Server.class.getName()).log(Level.SEVERE, null, ex);

        }
        catch (AWTException ex)
        {
            Logger.getLogger(Server.class.getName()).log(Level.SEVERE, null, ex);
        }
        finally
        {
            try
            {
                server.closeConnection();
            }
            catch (IOException ex)
            {
                Logger.getLogger(Server.class.getName()).log(Level.SEVERE, null, ex);
            }
        }

    }


}

}

客户

  public class UpdateScreen extends View
{

private DataInputStream input;
private DataOutputStream output;
private Socket soc;
private Bitmap image;



public UpdateScreen(Context context) throws UnknownHostException, IOException 
  {
    super(context);
    // TODO Auto-generated constructor stub
    this.setFocusable(true);
    this.setFocusableInTouchMode(true);
    init();
}

public void init() throws UnknownHostException, IOException
{

    soc = new Socket(InetAddress.getByName("10.0.2.2"), 3838);
    input = new DataInputStream(soc.getInputStream());
    while(true)
    {
    byte[] img = this.getByteArrayFromStream();
    image = BitmapFactory.decodeByteArray(img, 0, img.length);

    }

}


protected void onSizeChanged(int w, int h, int oldw, int oldh) 
   {
    // TODO Auto-generated method stub

     image = Bitmap.createScaledBitmap(image, w, h, false);

    }


public byte[] getByteArrayFromStream() throws IOException
{
    ByteArrayOutputStream buffer = new ByteArrayOutputStream();
    int nread;
    byte[] data = new byte[1042];
    while((nread = input.read(data, 0, data.length)) != -1)
    {
       buffer.write(data, 0, nread);    
    }

     return buffer.toByteArray();
}


@Override
protected void onDraw(Canvas canvas) 
{
    // TODO Auto-generated method stub
    invalidate();
    super.onDraw(canvas);
    canvas.drawBitmap(image, 0, 0, null);

}

}

4

2 回答 2

0

服务器连续发送图像,客户端尝试在开始绘制之前接收所有数据(无限量)。

更好的是例如轮询方法,这意味着客户端请求一个新图像,而服务器只提供一个图像。

仍然存在一些问题:服务器必须发送图像数据的长度(或在每个图像之后关闭连接),以便客户端知道何时应该停止等待数据并开始处理,并且 onDraw() 不应该调用 invalidate() 因为这可以导致对 onDraw() 的进一步调用太频繁或太少(如果它可以工作的话)。

于 2013-05-12T10:55:21.163 回答
0

如果您使用 ImageView 来显示图像,您可能不需要服务器正在发送的巨大图像。

您可能可以做几件事:

  1. 使用 Aquery 之类的库并将其 ImageLoading 关联到您的视图
  2. 自己做艰苦的工作 - 参考 Android 文档 - 有效地显示位图
于 2013-05-12T11:06:12.533 回答