美文网首页
字符串转换base64

字符串转换base64

作者: Victory_IT | 来源:发表于2017-01-05 15:27 被阅读0次

1 先把字符串转换成byte数组

String phone ="0123abc";

byte[] bytes = phone.getBytes();

2 使用android自带的api把byte转换成base64的字符串

String s2 = Base64.encodeToString(bytes, Base64.DEFAULT);

Log.e("TAG","base64编码:"+ s2);

相关文章

网友评论

      本文标题:字符串转换base64

      本文链接:https://www.haomeiwen.com/subject/otezvttx.html