Base64字符串转换为字节数组无法正常工作

时间:2016-11-02 07:41:03

标签: java html arrays image base64

我尝试使用org.apache.commons.codec.binary.Base64将Base64字符串转换为字节数组

byte[] image = Base64.decodeBase64("Base64 String");

然后将字节数组转换为Base64,如

String Base64String = Base64.encodeBase64String(image);

但base64String与原始base64字符串不同。我不知道我哪里出错了

1 个答案:

答案 0 :(得分:-1)

使用encodeBase64而不是encodeBase64String。