Java base64编码,解码产生不同的结果

时间:2017-07-22 01:41:54

标签: java string encoding base64 decoding

我用这个: import com.sun.org.apache.xml.internal.security.utils.Base64;编码/解码Base64字符串和字节数组以存储到数据库中。

我正在测试编码和解码以查看是否可以取回原始字符串:

SecureRandom srand = new SecureRandom();
        byte[] randomSalt = new byte[64];
        srand.nextBytes(randomSalt);
        System.out.println("rand salt bytes: " + randomSalt); // first line
        String salt = Base64.encode(randomSalt);
        try {
            System.out.println(Base64.decode(salt)); // second line
        }catch(Base64DecodingException e){
            System.out.println(e);
        }

然而,打印出来:

rand salt bytes: [B@68286c59
[B@44d01f20

为什么这些不一样,以便我可以取回原始的字节数组?

1 个答案:

答案 0 :(得分:3)

您正在做的是实际处理java指针而不是实际的字节。 这是实现

的正确方法
byte[]   bytesEncoded = Base64.encodeBase64(str .getBytes());
System.out.println("ecncoded value is " + new String(bytesEncoded ));

// Decode data on other side, by processing encoded data
byte[] valueDecoded= Base64.decodeBase64(bytesEncoded );
System.out.println("Decoded value is " + new String(valueDecoded));