Python Base64编码与Java Base64编码

时间:2014-07-21 18:53:55

标签: java python base64

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

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;”库。

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

你的python代码在调用Base64

之前在输入String中附加一个冒号
>>> 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);

答案 1 :(得分:0)

Java中的

String.getBytes()并不保证使用的字符集。请使用String.getBytes(String)来确保您获得所需的编码。

user.getBytes("UTF-8")