我需要从字节数组进行Base64编码,而不是另一个字节数组。但当我解码它时,我得到例外。这是代码
我正在尝试使用Base64编码将字节数组编码为字符串。当我编码时,它似乎工作,但当我解码它会引发异常。我做错了什么?
import org.springframework.security.crypto.codec.Base64;
byte[] bytes = new byte[]{1,2,3,4,5,6,7,8,9};
String stringToStore = Base64.encode(bytes).toString();
byte[] restoredBytes = Base64.decode(stringToStore.getBytes());
以下是我得到的例外情况:
org.springframework.security.crypto.codec.InvalidBase64CharacterException: Bad Base64 input character decimal 91 in array position 0
at org.springframework.security.crypto.codec.Base64.decode(Base64.java:625)
at org.springframework.security.crypto.codec.Base64.decode(Base64.java:246)
答案 0 :(得分:17)
你能试试......
byte[] bytes = new byte[]{1,2,3,4,5,6,7,8,9};
String stringToStore = new String(Base64.encode(bytes));
byte[] restoredBytes = Base64.decode(stringToStore.getBytes());
答案 1 :(得分:5)
Base64.encode(bytes).toString()
不会返回您期望的字符串。
你应该使用
new String(Base64.encode(bytes))
正如iccthedral所建议的那样。
答案 2 :(得分:2)
String stringToStore = Base64.encode(bytes).toString();
这不是将字节转换为字符串。它是Java对象的字符串表示形式(例如,"[B@9a4d5c6"
)。您需要执行iccthedral建议并将字节提供给String类。
答案 3 :(得分:2)
如果您使用的是Android API 8+,Base64
中有一个android.util
辅助类。
String stringToStore = Base64.encodeToString(cipherText, Base64.DEFAULT);
答案 4 :(得分:1)
这对我有用:
byte[] bytes = new byte[]{1, 2, 3, 4, 5, 6, 7, 8, 9};
String stringToStore = Base64.encode(bytes);
//System.out.println(stringToStore);//AQIDBAUGBwgJ
byte[] restoredBytes = Base64.decode(stringToStore);
//System.out.println(Arrays.toString(restoredBytes));//[1, 2, 3, 4, 5, 6, 7, 8, 9]
我编辑了一下:
toString()
。 String
方法已经返回encode(bytes)
(正如其他人所说,这可能会导致错误)String
)答案 5 :(得分:1)
最初,如果您使用此密码,则不建议将其转换为字符串。要用作String,请遵循以下代码段
byte[] bytes = new byte[]{1,2,3,4,5,6,7,8,9}; String stringToStore = new String(Base64.encode(bytes), "UTF-8"); byte[] restoredBytes = Base64.decode(stringToStore.getBytes());
答案 6 :(得分:0)
byte\[\]
出现 Base64.decode()
。调用toString()
会给你一些关于数组的默认Java描述,就像“56AB0FC3 ...”一样。您需要自己进行转换。
同样,您对getBytes()
的致电根本没有按照您的想法进行。
答案 7 :(得分:0)
我从apache codec尝试了Base64,结果很好。
import org.apache.commons.codec.binary.Base64;
byte[] bytes = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Base64 base64 = new Base64();
byte[] stringToStore = base64.encode(bytes);
System.out.print(Arrays.toString(stringToStore));//[65, 81, 73, 68, 66, 65, 85, 71, 66, 119, 103, 74]
byte[] restoredBytes = base64.decode(stringToStore);
System.out.print(Arrays.toString(restoredBytes));//[1, 2, 3, 4, 5, 6, 7, 8, 9]
答案 8 :(得分:0)
要解码包含base64内容的字节数组,您可以使用 javax.xml.bind.DatatypeConverter 。它工作得很好。我用它来解码二进制类型的MongoDB值。
String testString = "hi, I'm test string";
byte[] byteArrayBase64 = org.apache.commons.codec.digest.DigestUtils.md5(testString);
String decoded = javax.xml.bind.DatatypeConverter.printBase64Binary(byteArrayBase64);
assert testString.equals(decoded);