你的位置:首页 > 软件开发 > ASP.net > Java Base64 加密解密

Java Base64 加密解密

发布时间:2016-02-20 18:00:10
使用JDK的类 BASE64Decoder BASE64Encoder Java代码 package test; import sun.misc.BASE64Decoder; import ...

使用JDK的类 BASE64Decoder  BASE64Encoder

 

Java代码  Java Base64 加密解密
  1. package test;  
  2.   
  3. import sun.misc.BASE64Decoder;       
  4. import sun.misc.BASE64Encoder;       
  5.       
  6. /**    
  7.  * BASE64加密解密    
  8.  */      
  9. public class BASE64       
  10. {       
  11.       
  12.     /**     
  13.      * BASE64解密    
  14.    * @param key           
  15.      * @return           
  16.      * @throws Exception           
  17.      */                
  18.     public static byte[] decryptBASE64(String key) throws Exception {                 
  19.         return (new BASE64Decoder()).decodeBuffer(key);                 
  20.     }                 
  21.                     
  22.     /**          
  23.      * BASE64加密    
  24.    * @param key           
  25.      * @return           
  26.      * @throws Exception           
  27.      */                
  28.     public static String encryptBASE64(byte[] key) throws Exception {                 
  29.         return (new BASE64Encoder()).encodeBuffer(key);                 
  30.     }         
  31.            
  32.     public static void main(String[] args) throws Exception       
  33.     {       
  34.         String para = "{\"IdList1\": 1,\"IdList2\": [1,2,3,4,5,6,18],\"IdList3\": [1,2]}";  
  35.         String data = BASE64.encryptBASE64(para.getBytes());       
  36.         System.out.println("加密前:"+data);       
  37.                
  38.         byte[] byteArray = BASE64.decryptBASE64(data);       
  39.         System.out.println("解密后:"+new String(byteArray));       
  40.     }       
  41. }      

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:Java Base64 加密解密

关键词:JAVA

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。