Bitmap foto = b.getBitmap();
byte[] bytes = null;
ByteArrayOutputStream ba = new ByteArrayOutputStream();
foto.compress(Bitmap.CompressFormat.JPEG, 100, ba);
foto.recycle();
foto = null;
bytes = ba.toByteArray();
String bBytes = Arrays.toString(bytes);
我想這個方法返回字節值的字符串。例如,它將是:"12,23,34 ...."
。將字節數組轉換爲字符串 - - 使用Performace Android
所以你期望人們首先__translate__你的問題? – devnull
我試圖解決我在他的問題中理解的內容。 – Manitoba
你用這種方法表示哪種方法?! – mok