JAVA base64 加密親測可用!

DreamWeaver_Zhou發表於2018-01-25
    第一步建立maven專案然後導包 :<dependency>
                                                                <groupId>commons-codec</groupId>
                                                              <artifactId>commons-codec</artifactId>
                                                                    <version>1.10</version>

                                                                 </dependency>


  第二步:廢話不多說 直接上親身測試程式碼


package com.pinnacle;

import org.apache.commons.codec.binary.Base64;

public class Test1 {
        
    public static void main(String[] args) {  
         /*使用commons-codec的base64加解密*/  
        String str ="這是要加密的字串,使用jdk";  
        str ="這是要加密的字串,使用CC";  
        str = CCBase64Encoder(str);  
        System.out.println("加密後的字串為:"+str);  
        str=CCBase64Decoder(str);  
        System.out.println("解密後的字串為:"+str);  
    }
    /**
     * 使用commons-codec的base64 加密字串
     * */  
    public static String CCBase64Encoder(String str)  
    {  
           
        return new String(Base64.encodeBase64(str.getBytes()));  
    }  
      
    /**
     * 使用commons-codec的base64 解密字串
     * */  
    public static String CCBase64Decoder(String str)  
    {  
        return new String(Base64.decodeBase64(str.getBytes()));  
          
    }  
}


相關文章