Base64编码
Base64类是用于Base64编码的工具类,使用如下
1 2 3 4 5 6 7 8 9
| String raw = "Base64编解码"; System.out.println("原文:"+raw);
byte[] b = raw.getBytes(); String encode = Base64.encodeBase64String(b); System.out.println("编码后:"+encode);
String decode = new String(Base64.decodeBase64(encode)); System.out.println("解码后:"+decode);
|
结果如下
1 2 3
| 原文:Base64编解码 编码后:QmFzZTY057yW6Kej56CB 解码后:Base64编解码
|
这里所用的是commons-codec包中的Base64