我有一个编码问题。相同的代码在 Android 和 Windows 上产生不同的输出。我无法修改Android应用程序,因此我需要在windows上找到解决方案。这是代码:
public void test() throws UnsupportedEncodingException
{
byte[] a = {-95, -10, -63, -74, 99, -10, 74, -56, -85, 105};
String ab = new String(a,"UTF-8");
System.out.println("out:"+Arrays.toString((new StringBuilder(String.valueOf(ab))).toString().getBytes("UTF-8")));
}
输出:
out:[-17, -65, -67, -17, -65, -67, 118, 99, -17, -65, -67, 74, -56, -85, 105] (on Android)
out:[-17, -65, -67, -17, -65, -67, -17, -65, -67, -17, -65, -67, 99, -17, -65, -67, 74, -56, -85, 105] (on Windows)
Android 似乎使用“java.nio.charset.CharsetICU[UTF-8]”。有什么建议么?
谢谢,亚历克斯