我正在尝试将一些python代码转换为java。现在坚持使用值大于 63 的 python base64 编码器。
Python:
s = chr(59) + chr(234)
print(base64.b64encode(s))
>> O+o=
爪哇
char[] chars = {59, 234};
String data = new String(chars);
byte[] encoded = Base64.encodeBase64(data.getBytes());
System.out.println(new String(encoded));
>> O8Oq
有人知道吗?