非法参数异常:使用Base64.getDecode()解码字符串值时,Base64字符3a非法
我正在解码的字符串值是"ed:1234",但它抛出了一个IllegalArgumentException错误。如果有人知道我为什么会有这个错误,我将不胜感激。
编码:
String authInfo = "ed:1234";
byte[] bytes = Base64.getDecoder().decode(authInfo);
错误:
java.lang.IllegalArgumentException: Illegal base64 character 3a
Base3>
问题是:
(ascii十进制58或十六进制3a)仅在一种(几种)推荐答案编码方案中有效,您需要Base64.getMimeDecoder()
。喜欢,
byte[] bytes = Base64.getMimeDecoder().decode(authInfo);
System.out.println(Arrays.toString(bytes));
哪些输出(无其他更改)
[121, -35, 118, -33]
相关文章