how to convert an image into base64 string

前端 未结 5 873
醉梦人生
醉梦人生 2020-12-19 04:09

I want to convert image to base 64 encode to string. from that to send to server with oma_status-icon xml format.

but I am getting unsupported encodin

5条回答
  •  -上瘾入骨i
    2020-12-19 04:31

    maybe you can try

    String base64Result = Base64.encodeToString(yourByteArray[], Base64.DEFAULT);

提交回复
热议问题