在 java 中如何进行base64 编码和解码

2025-04-08 23:48:22
推荐回答(2个)
回答1:


// 将 s 进行 BASE64 编码 
public static String getBASE64(String s) { 
if (s == null) return null; 
return (new sun.misc.BASE64Encoder()).encode( s.getBytes() ); 


// 将 BASE64 编码的字符串 s 进行解码 
public static String getFromBASE64(String s) { 
if (s == null) return null; 
BASE64Decoder decoder = new BASE64Decoder(); 
try { 
byte[] b = decoder.decodeBuffer(s); 
return new String(b); 
} catch (Exception e) { 
return null; 


//将 BASE64 编码的字符串 InputStream 进行解码 
public static java.nio.ByteBuffer getFromBASE64byte(String s) { 
if (s == null) 
return null; 
BASE64Decoder decoder = new BASE64Decoder(); 
try { 
return decoder.decodeBufferToByteBuffer(s);//decoder.decodeBuffer(s); 
} catch (Exception e) { 
return null; 



//将 BASE64 编码的文件进行解码 

ByteBuffer value = Base64Utils.getFromBASE64byte(nl.item(i*2+1).getTextContent().trim()); FileOutputStream fos = new FileOutputStream(filename); FileChannel fc = fos.getChannel(); 
fc.write(value); 
fos.flush(); 
fc.close(); 


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

回答2:

java 6内置有这个的,sun的包里面