警告: BASE64Decoder是内部专用 API, 可能会在未来发行版中删除
代码语言:javascript复制import org.apache.commons.codec.binary.Base64;
public class Base64Encoder {
/**
* @param bytes
* @return
*/
public static byte[] decode(final byte[] bytes) {
return Base64.decodeBase64(bytes);
}
/**
* 二进制数据编码为BASE64字符串
*
* @param bytes
* @return
* @throws Exception
*/
public static String encode(final byte[] bytes) {
return new String(Base64.encodeBase64(bytes));
}
}
//原来的方式
// byte[] bytes = new BASE64Decoder().decodeBuffer(base64);
//替换后的方式
byte[] bytes = Base64Encoder.decode(base64.getBytes());
//原来的方式
// result = Base64.encode(str4);
//替换后的方式
result = Base64Encoder.encode(str4);