gpt4 book ai didi

java - Python Base64 编码与 Java Base64 编码

转载 作者:太空宇宙 更新时间:2023-11-03 18:16:56 25 4
gpt4 key购买 nike

以下是我生成base64编码字符串的python代码:

base64str = base64.encodestring('%s:' % getpass.getuser())

我想要使用Java相同的base64str。这是我的 Java 代码片段:

String user = System.getProperty("user.name");
byte[] encoded_str = Base64.encodeBase64(user.getBytes());
String encoded_string = new String(encoded_str).trim();

不知何故,Python 编码的字符串与 Java 不同。我正在使用“import org.apache.commons.codec.binary.Base64;”图书馆。

有什么想法吗?

最佳答案

您的 python 代码在调用 Base64 之前将冒号附加到输入字符串

>>> print '%s:' % 'test'
test:

当我将冒号添加到您的 java 代码中时,我能够在测试(python 和 Java)中得到相同的结果,

String user = System.getProperty("user.name") + ":";
byte[] encoded_str = Base64.encodeBase64(user
.getBytes());
String encoded_string = new String(encoded_str)
.trim();
System.out.println(encoded_string);

关于java - Python Base64 编码与 Java Base64 编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24872557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com