1

以下程序输出在 Windows 和 Unix 系统上有所不同。您能否向我解释为什么会发生这种情况,以及如何使这种行为在 Unix 和 Windows 之间保持一致。

因为我使用 Unix 对文件进行编码,并且无法在 Windows 系统上对其进行解码。

在这方面的任何帮助将不胜感激。提前致谢。

import sun.misc.BASE64Encoder;
import sun.misc.CharacterEncoder;

public class TestEncode {

public static void main(String[] args) {        

        byte signature[] = "[35, 44, -31, 18, 78, 84, -113, 1, 27, 36, -79, -60, 75, -14, -80, -99, 65, 11, -45, -54, 23, -100, 74, -54, -26, -77, 33, -40, 104, 90, -33, 32, -123, -76, -27, -118, -25, -97, -85, 22, -64, 102, -7, 119, -65, 35, -114, 31, -83, 73, -57, 63, -7, 47, -31, 48, 28, -109, 54, -90, -24, -21, -102, 59, 82, -14, -52, -77, -22, -25, -15, -81, 70, 52, -42, 93, 76, -51, 96, 87, 29, -37, -40, -71, -121, 44, -44, 74, 23, -76, 29, 108, -56, 48, 46, -26, -73, -53, 90, 53, 25, -96, 115, -79, 93, -128, -46, -119, -30, 22, -107, -27, 6, -120, 2, 19, -72, -5, 30, -54, -34, 26, -22, -44, 93, 40, 84, -125]".getBytes();

    byte encodedSignature[] = null;

      CharacterEncoder encoder;
      encoder = new BASE64Encoder();
      encodedSignature = encoder.encode(signature).getBytes();


      System.out.println(encodedSignature.length);

}

}
4

2 回答 2

3

您可能在每台机器上使用不同的字符集。试试这个找出:

System.out.println("Default Charset=" + Charset.defaultCharset());

我在调用该getBytes()方法时怀疑您的问题。默认情况下,它使用平台的默认字符集。如果要保证它使用相同的,请getBytes()通过调用在方法中指定它getBytes("UTF-8");

于 2012-09-07T19:41:52.947 回答
1

你能试一试吗,你在 windows 和 linux 上的结果是什么:

import com.sun.org.apache.xml.internal.security.exceptions.Base64DecodingException;
import com.sun.org.apache.xml.internal.security.utils.Base64;
import java.io.IOException;

public class Base64Test {

    public static void main(String args[]) throws IOException, Base64DecodingException {
        String orig = "original String before base64 encoding in Java";

        //encoding  byte array into base 64
        String encoded = Base64.encode(orig.getBytes("UTF-8"));//make sure the bytes are utf-8 and not platform default     

        System.out.println("Original String: " + orig );
        System.out.println("Base64 Encoded String : " + new String(encoded,"UTF-8"));//ensure string is utf-8

        //decoding byte array into base64
        byte[] decoded = Base64.decode(encoded);      
        System.out.println("Base 64 Decoded  String : " + new String(decoded,"UTF-8"));//ensure string is utf-8

    }
}

我的是(仅限 Windows):

原始字符串:Java中base64编码之前的原始字符串

Base64 编码字符串:b3JpZ2luYWwgU3RyaW5nIGJlZm9yZSBiYXNlNjQgZW5jb2RpbmcgaW4gSmF2YQ==

Base64解码字符串:Java中base64编码之前的原始字符串

您可能面临的问题是:

  • Windows 上默认使用的字符编码与 Linux 上的不同。特别是因为getBytes()涉及可能将其设置为您自己的默认值getBytes("UTF-8")(在我的示例中,我尝试这样做)
  • 这可能是由默认分别为 ("\r\n") 和 ("\n") 的行分隔符引起的。

但我不能确定

于 2012-09-07T19:08:11.293 回答