问题可能出在客户端和服务器不一致的图像格式上。可以通过以下方式在客户端处理图像:
加载图像 Bitmap bitmap = BitmapFactory.decodeFile(filePath); // 或者 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.sample_image);
转化为字节数组 ByteArrayOutputStream stream = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream); byte[] byteArray = stream.toByteArray();
发送字节数组到服务器 OutputStream outputStream = socket.getOutputStream(); outputStream.write(byteArray, 0, byteArray.length); outputStream.flush();
在服务器端,可以按照以下方式接收和显示图像:
接收字节数组 InputStream inputStream = socket.getInputStream(); byte[] buffer = new byte[1024]; int len; ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); while ((len = inputStream.read(buffer)) != -1) { outputStream.write(buffer, 0, len); }
转换并显示图像 byte[] byteArray = outputStream.toByteArray(); Bitmap bitmap = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length); imageView.setImageBitmap(bitmap);
需要注意的是,客户端和服务器端需要使用相同的压缩格式(在本例中为JPEG),否则可能会出现图像显示不一致或者黑屏的问题。