Java如何進行Base64的編碼(Encode)與解碼(Decode)

關於base64編碼Encode和Decode編碼的幾種方式

Base64是一種能將任意Binary資料用64種字元組合成字串的方法,而這個Binary資料和字串資料彼此之間是能夠互相轉換的,十分方便。在實際應用上,Base64除了能將Binary資料可視化以外,也經常使用來表示字串加密事後的內容。若是要使用Java 程式語言來實做Base64的編碼與解碼功能,能夠參考本篇文章的做法。java

早期做法

早期在Java上作Base64的編碼與解碼,會使用到JDK裏sun.misc套件下的BASE64Encoder和BASE64Decoder這兩個類別,用法以下:apache

final BASE64Encoder encoder = new BASE64Encoder();
final BASE64Decoder decoder = new BASE64Decoder();
final String text = "字串文字";
final byte[] textByte = text.getBytes("UTF-8");
//編碼
final String encodedText = encoder.encode(textByte);
System.out.println(encodedText);
//解碼
System.out.println(new String(decoder.decodeBuffer(encodedText), "UTF-8"));

final BASE64Encoder encoder = new BASE64Encoder();
final BASE64Decoder decoder = new BASE64Decoder();
final String text = "字串文字";
final byte[] textByte = text.getBytes("UTF-8");
//編碼
final String encodedText = encoder.encode(textByte);
System.out.println(encodedText);

//解碼
System.out.println(new String(decoder.decodeBuffer(encodedText), "UTF-8"));

 

 

從以上程式能夠發現,在Java用Base64一點都不難,不用幾行程式碼就解決了!只是這個sun.mis c套件所提供的Base64功能,編碼和解碼的效率並不太好,並且在之後的Java版本可能就不被支援了,徹底不建議使用。測試

Apache Commons Codec做法

Apache Commons Codec有提供Base64的編碼與解碼功能,會使用到org.apache.commons.codec.binary套件下的Base64類別,用法以下:編碼

final Base64 base64 = new Base64();
final String text = "字串文字";
final byte[] textByte = text.getBytes("UTF-8");
//編碼
final String encodedText = base64.encodeToString(textByte);
System.out.println(encodedText);
//解碼
System.out.println(new String(base64.decode(encodedText), "UTF-8"));

final Base64 base64 = new Base64();
final String text = "字串文字";
final byte[] textByte = text.getBytes("UTF-8");
//編碼
final String encodedText = base64.encodeToString(textByte);
System.out.println(encodedText);
//解碼
System.out.println(new String(base64.decode(encodedText), "UTF-8"));

 

以上的程式碼看起來又比早期用sun.mis c套件還要更精簡,效能實際執行起來也快了很多。缺點是須要引用Apache Commons Codec,很麻煩。加密

Java 8以後的做法

Java 8的java.util套件中,新增了Base64的類別,能夠用來處理Base64的編碼與解碼,用法以下:spa

final Base64.Decoder decoder = Base64.getDecoder();
final Base64.Encoder encoder = Base64.getEncoder();
final String text = "字串文字";
final byte[] textByte = text.getBytes("UTF-8");
//編碼
final String encodedText = encoder.encodeToString(textByte);
System.out.println(encodedText);
//解碼
System.out.println(new String(decoder.decode(encodedText), "UTF-8"));

final Base64.Decoder decoder = Base64.getDecoder();
final Base64.Encoder encoder = Base64.getEncoder();
final String text = "字串文字";
final byte[] textByte = text.getBytes("UTF-8");
//編碼
final String encodedText = encoder.encodeToString(textByte);
System.out.println(encodedText);
//解碼
System.out.println(new String(decoder.decode(encodedText), "UTF-8"));

與sun.mis c套件和Apache Commons Codec所提供的Base64編解碼器來比較的話,Java 8提供的Base64擁有更好的效能。實際測試編碼與解碼速度的話,Java 8提供的Base64,要比sun.mis c套件提供的還要快至少11倍,比Apache Commons Codec提供的還要快至少3倍。所以在Java上若要使用Base64,這個Java 8底下的java .util套件所提供的Base64類別絕對是首選!code

相關文章
相關標籤/搜索