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 ...."
。
答案 0 :(得分:1)
以下是如何做到这一点。
import java.util.Arrays;
public class Test {
public static void main(String[] args) {
byte[] bytes = {1,2,3,12};
String bBytes = Arrays.toString(bytes);
bBytes = bBytes.replaceAll(" ", "");
bBytes = bBytes.replaceAll("\\[", "");
bBytes = bBytes.replaceAll("\\]", "");
System.out.println(bBytes);
}
}