// 将 s 进行 BASE64 编码
public static String getBASE64(String s) {
if (s == null) return null;
return (new sun.misc.BASE64Encoder()).encode( s.getBytes() );
}

// 将 BASE64 编码的字符串 s 进行解码
public static String getFromBASE64(String s) {
if (s == null) return null;
BASE64Decoder decoder = new BASE64Decoder();
try {
byte[] b = decoder.decodeBuffer(s);
return new String(b);
} catch (Exception e) {
return null;
}
}

或者apache的包

import java.io.UnsupportedEncodingException;

import org.apache.commons.codec.binary.Base64;
public class Base64Util { /**
* 将二进制数据编码为BASE64字符串
* @param binaryData
* @return
*/
public static String encode(byte[] binaryData) {
try {
return new String(Base64.encodeBase64(binaryData), "UTF-8");
} catch (UnsupportedEncodingException e) {
return null;
}
} /**
* 将BASE64字符串恢复为二进制数据
* @param base64String
* @return
*/
public static byte[] decode(String base64String) {
try {
return Base64.decodeBase64(base64String.getBytes("UTF-8"));
} catch (UnsupportedEncodingException e) {
return null;
}
} }

最新文章

  1. Web API项目中使用Area对业务进行分类管理
  2. [转]用NPOI操作EXCEL--数据有效性
  3. 更有效率的使用Visual Studio(一)
  4. 【JavaScript】一些注意点
  5. 如何使用10个小时搭建出个人域名而又Geek的独立博客?
  6. (hdu)1160 FatMouse's Speed
  7. Unexpected CFBundleExecutable Key
  8. angularjs-googleMap googleMap api地址解析与反解析
  9. QT实现单个EXE文件
  10. hdoj 1013
  11. Windows Phone开发(9):关于页面状态
  12. NodeMCU Builder, yet another NodeMCU IDE
  13. [51nod1206]Picture
  14. winform窗体嵌套HTML页面,开发出炫彩桌面程序
  15. 5、SAMBA服务一:参数详解
  16. python3绝对路径,相对路径
  17. 【Espruino】NO.07 获取电压值
  18. angularJS1笔记-(14)-自定义指令(scope)
  19. 微信js-sdk使用
  20. jQuery多次选中checkbox失效

热门文章

  1. VMware下安装CentOS
  2. P2P-BT对端管理协议(附BT协议1.0)
  3. android自定义控件(二)Canvas
  4. Android的代码都得自己一个个敲一遍吗?
  5. c#下载文件,最简单代码
  6. nodejs中全栈开发框架meteor的文档
  7. Scrapy框架2
  8. 每天一个Linux命令(43)at命令
  9. iOS清除缓存功能开发
  10. Go bufio库