base64url in java
https://web.archive.org/web/20110422225659/https://en.wikipedia.org/wiki/Base64#URL_applications
谈论 base64Url - 解码
存在用于URL变体的修改后的Base64,其中不会使用填充“=”,并且标准Base64的“+”和“/”字符分别替换为“-”和“_”
我创建了以下函数:
public static String base64UrlDecode(String input) {
String result = null;
BASE64Decoder decoder = new BASE64Decoder();
try {
result = decoder.decodeBuffer(input.replace('-','+').replace('/','_')).toString();
}
catch (IOException e) {
System.out.println(e.getMessage());
}
return result;
}
它返回一组非常小的字符,这些字符甚至与预期结果不相似。任何想法?