实际上,您正在使用的 < commons- codec 版本和具体的 Sun 内部版本的 < strong > do strong > 给与同样的结果。 我想你认为他们给出不同的版本, 是因为你暗中将 < code> to String () 调用在一个阵列上, 当你这样做时:
System.out.println(org.apache.commons.codec.binary.Base64.encodeBase64(baos.toByteArray()));
其中肯定不打印数组内容。相反,这将只打印数组引用的地址。
我写了以下程序来测试编码器相互对立。 您可以从下面的输出中看到结果相同:
import java.util.Random;
public class Base64Stuff
{
public static void main(String[] args) {
Random random = new Random();
byte[] randomBytes = new byte[32];
random.nextBytes(randomBytes);
String internalVersion = com.sun.org.apache.xerces.internal.impl.dv.util.Base64.encode(randomBytes);
byte[] apacheBytes = org.apache.commons.codec.binary.Base64.encodeBase64(randomBytes);
String fromApacheBytes = new String(apacheBytes);
System.out.println("Internal length = " + internalVersion.length());
System.out.println("Apache bytes len= " + fromApacheBytes.length());
System.out.println("Internal version = |" + internalVersion + "|");
System.out.println("Apache bytes = |" + fromApacheBytes + "|");
System.out.println("internal equal apache bytes?: " + internalVersion.equals(fromApacheBytes));
}
}
这里显示它运行的输出 :
Internal length = 44
Apache bytes len= 44
Internal version = |Kf0JBpbxCfXutxjveYs8CXMsFpQYgkllcHHzJJsz9+g=|
Apache bytes = |Kf0JBpbxCfXutxjveYs8CXMsFpQYgkllcHHzJJsz9+g=|
internal equal apache bytes?: true