• Java Base64 加密解密


    使用JDK的类 BASE64Decoder  BASE64Encoder

    Java代码  收藏代码
    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. }      

       使用Apache commons codec 类Base64获取【下载地址】  

    Java代码  收藏代码
    1. package test;  
    2.   
    3. import java.io.UnsupportedEncodingException;  
    4.   
    5. import org.apache.commons.codec.binary.Base64;  
    6.   
    7.   
    8.   
    9. public class Base64Util {  
    10.       
    11.     public static String encode(byte[] binaryData) throws UnsupportedEncodingException {  
    12.         return new String(Base64.encodeBase64(binaryData), "UTF-8");  
    13.     }  
    14.       
    15.     public static byte[] decode(String base64String) throws UnsupportedEncodingException {  
    16.         return Base64.decodeBase64(base64String.getBytes("UTF-8"));  
    17.     }  
    18.       
    19.       
    20.     public static void main(String[] args) throws UnsupportedEncodingException {  
    21.         String para = "{"IdList1": 1,"IdList2": [1,2,3,4,5,6,18],"IdList3": [1,2]}";  
    22.         String data = Base64Util.encode(para.getBytes());     
    23.         System.out.println("加密前:"+data);       
    24.                
    25.         byte[] byteArray = Base64Util.decode(data);  
    26.         System.out.println("解密后:"+new String(byteArray));    
    27.     }  
    28.   
    29.   
    30. }  
  • 相关阅读:
    css盒模型不同浏览器下解释不同 解决办法
    【META http-equiv="Content-Type" Content="text/html; Charset=*】意义详解
    淘宝2015年秋招在线笔试题
    mouseleave mouseout时候悬浮框不应该消失的时候消失了 css 解决办法
    ACM知识点分类
    2019牛客多校第九场 B.Quadratic equation
    扫描线算法
    可持久化数据结构(模板)
    luogu SP3267 DQUERY
    luogu2633 Count on a tree(树上LCA+主席树求区间第k小)
  • 原文地址:https://www.cnblogs.com/koliop090/p/5203553.html
Copyright © 2020-2023  润新知