我想将图像数组从 android 发送到 rest web 服务,反之亦然。
所以我需要在rest web service中写两个方法:
- 用于从客户端访问图像数组。
- 用于将图像数组从 REST Web 服务发送到 android。
我一直在互联网上找到解决方案,但无法得到它。
解决方案是什么?
用于将字节数组转换为位图:
byte[] iconData;
Bitmap image = BitmapFactory.decodeByteArray(iconData, 0,
iconData.length);
对于位图到字节数组,请使用:将 Java 位图转换为字节数组。