Apache Commons-Codec的使用

处理常用的编码方法的工具类包 例如DES、SHA1、MD5、Base64等.

导入包:



commons-codec
commons-codec
1.10
public class test {
public static String encodeTest(String str){

Base64 base64 = new Base64();

try {

str = base64.encodeToString(str.getBytes("UTF-8"));

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

System.out.println("Base64 编码后:"+str);

return str;

}
public static void decodeTest(String str){

Base64 base64 = new Base64();

//str = Arrays.toString(Base64.decodeBase64(str));

str = new String(Base64.decodeBase64(str));

System.out.println("Base64 解码后:"+str);

}
}

转载于:https://www.cnblogs.com/java7115/p/9675925.html

你可能感兴趣的:(Apache Commons-Codec的使用)