使用Apache commons-codec Base64實現加解密

commons-codec是Apache下面的一個加解密開發包html

官方地址爲:http://commons.apache.org/codec/算法

官方下載地址:http://commons.apache.org/codec/download_codec.cgiapache

在線文檔:http://commons.apache.org/codec/userguide.htmlide

下面示例爲使用Base64實現字符串的加解密:ui

  1. /** 加密

  2.      *  spa

  3.      * 建立日期2011-4-25上午10:12:38 code

  4.      * 修改日期 htm

  5.      * 做者:dh *TODO 使用Base64加密算法加密字符串 開發

  6.      *return 

  7.      */  

  8.     public static String encodeStr(String plainText){  

  9.         byte[] b=plainText.getBytes();  

  10.         Base64 base64=new Base64();  

  11.         b=base64.encode(b);  

  12.         String s=new String(b);  

  13.         return s;  

  14.     }  

  15.       

  16.     /** 

  17.      *  

  18.      * 建立日期2011-4-25上午10:15:11 

  19.      * 修改日期 

  20.      * 做者:dh     *TODO 使用Base64加密 

  21.      *return 

  22.      */  

  23.     public static String decodeStr(String encodeStr){  

  24.         byte[] b=encodeStr.getBytes();  

  25.         Base64 base64=new Base64();  

  26.         b=base64.decode(b);  

  27.         String s=new String(b);  

  28.         return s;  

  29.     }  

相關文章
相關標籤/搜索