Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
论坛的好朋友,请看我的问题。
会发生什么,我花了几天时间寻找在 android 中序列化图像并获得带有序列化代码的字符串的结果。我已经搜索了很远,我发现的唯一东西是将其他对象转换为硬盘驱动器上的物理对象的方法......
请如果有人知道如何执行此程序,我将不胜感激:)
萨鲁2
还没有测试过,但这应该可以工作(我可能是错的,没有时间测试对不起!!!)
ByteArrayOutputStream baos = new ByteArrayOutputStream(); bm.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object byte[] b = baos.toByteArray(); String result = new String(b);