Java上的Java Charset问题
问题:我有一个包含特殊字符的字符串,我转换为字节,反之亦然.转换在
Windows上正常工作,但在linux上,特殊字符不能正确转换.linux上的默认字符集是UTF-8,如Charset所示. defaultCharset.getdisplayName()
但是如果我使用选项-Dfile.encoding = ISO-8859-1在linux上运行,它可以正常工作 如何使用UTF-8默认字符集使其工作,而不在unix环境中设置-D选项. 编辑:我使用jdk1.6.13 编辑:代码段 String x = "?"; System.out.println(x); byte[] ba = x.getBytes(Charset.forName(cs)); for (byte b : ba) { System.out.println(b); } String y = new String(ba,Charset.forName(cs)); System.out.println(y); ?问候 解决方法
您的角色可能会被编译过程损坏,您的类文件中的垃圾数据将会结束.
The “file.encoding” property is not required by the J2SE platform specification; it’s an internal detail of Sun’s implementations and should not be examined or modified by user code. It’s also intended to be read-only; it’s technically impossible to support the setting of this property to arbitrary values on the command line or at any other time during program execution. 总之,不要使用-Dfile.encoding = … String x = "?"; 由于U 00bd(?)将由不同的编码表示为不同的值: windows-1252 BD UTF-8 C2 BD ISO-8859-1 BD …你需要告诉编译器你的源文件的编码方式是: javac -encoding ISO-8859-1 Foo.java 现在我们来看一下: System.out.println(x); 作为PrintStream,这将在发送字节数据之前将数据编码为系统编码.喜欢这个: System.out.write(x.getBytes(Charset.defaultCharset())); 这可能或可能不符合您预期的some platforms – 字节编码必须与控制台期望正确显示字符的编码相匹配. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |