程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> xml-如何把圖像轉換成base64字符串

xml-如何把圖像轉換成base64字符串

編輯:編程綜合問答
如何把圖像轉換成base64字符串

我想把圖像轉換成base64 encode字符串。然後使用oma_status-icon xml格式發送到服務器。
但是我從服務器響應中獲得不受支持的編碼。
我是用的如下代碼實現的:

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);

怎麼把圖像轉換成base64字符串?

最佳回答:


試下這個方法

  public String bitmaptoString(Bitmap bitmap){
    //將Bitmap轉換成字符串
    String string=null;
    ByteArrayOutputStream bStream=new ByteArrayOutputStream();
    bitmap.compress(CompressFormat.PNG,100,bStream);
    byte[]bytes=bStream.toByteArray();
    string=Base64.encodeToString(bytes,Base64.DEFAULT);
    return string;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved