我想將圖像轉換爲base64編碼爲字符串。從那發送到服務器與oma_status-icon
xml格式。如何將圖像轉換爲base64字符串
,但我得到來自服務器的響應不支持的編碼....
是否有任何其他方式的圖像轉換爲Base64字符串?
plz..help ...
我的代碼是:
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), R.drawable.image);
ByteArrayOutputStream bao = new ByteArrayOutputStream();
bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 100, bao);
byte [] ba = bao.toByteArray();
String ba1=Base64.encodeBytes(ba);
如果這有幫助,然後接受答案,以便其他人可能會有所幫助。 – Nikhil