如何将照片通过UDP或TCP传送给服务器端

发布网友 发布时间:2022-04-20 06:16

我来回答

2个回答

热心网友 时间:2023-08-31 05:59

[mw_shl_code=java,true]Client:private static byte[] bitmapToBytes(Bitmap bitmap){ if (bitmap == null) { return null; } final ByteArrayOutputStream os = new ByteArrayOutputStream(); // 将Bitmap压缩成PNG编码,质量为100%存储 bitmap.compress(Bitmap.CompressFormat.PNG, 100, os);//除了PNG还有很多常见格式,如jpeg等。 return os.toByteArray(); }Server:private void byteTobitmap(byte[] bytes){ Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, null); imgPic.setBackgroundDrawable(new BitmapDrawable(bitmap)); }[/mw_shl_code]

热心网友 时间:2023-08-31 06:00

http://www.eoeandroid.com/forum.php?mod=viewthread&tid=92628 这个里面有数据传输的例子。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com