在 Java 中如何進行 BASE64 編碼和解碼

BASE64 編碼是一種經常使用的字符編碼,在不少地方都會用到。JDK 中提供了很是方便的 BASE64Encoder 和 BASE64Decoder,用它們能夠很是方便的完成基於 BASE64 的編碼和解碼。下面是本人編的兩個小的函數,分別用於 BASE64 的編碼和解碼:java

import sun.misc.BASE64Encoder; 
import sun.misc.BASE64Decoder;

// 將 s 進行 BASE64 編碼 
publicstaticString getBASE64(String s) { 
	if (s == null) returnnull; 
		return (new sun.misc.BASE64Encoder()).encode(s.getBytes()); 
} 

// 將 BASE64 編碼的字符串 s 進行解碼 
publicstaticString getFromBASE64(String s) { 
	if (s == null) returnnull; 
	BASE64Decoder decoder = new BASE64Decoder(); 
	try { 
		byte[] b = decoder.decodeBuffer(s); 
		returnnewString(b); 
	} catch (Exception e) { 
		returnnull; 
	} 
}
相關文章
相關標籤/搜索