JAVA中文件和目录操作的常用方法
JAVA的SHA1加密类
在 Java 中如何进行 BASE64
编码和解码
2006-11-27 21:02:18| 分类: JAVA&JSP
| 标签:java
|举报 |字号大中小 订阅
import sun.misc.BASE64Encoder;
import
sun.misc.BASE64Decoder;
// 将 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;
}
}