小编典典

设置默认 Java 字符编码

all

如何以编程方式正确设置 JVM (1.5.x) 使用的默认字符编码?

我读过这-Dfile.encoding=whatever曾经是旧 JVM 的方式。由于我不会进入的原因,我没有那种奢侈。

我努力了:

System.setProperty("file.encoding", "UTF-8");

并且该属性已设置,但似乎不会导致getBytes下面的最终调用使用 UTF8:

System.setProperty("file.encoding", "UTF-8");

byte inbytes[] = new byte[1024];

FileInputStream fis = new FileInputStream("response.txt");
fis.read(inbytes);
FileOutputStream fos = new FileOutputStream("response-2.txt");
String in = new String(inbytes, "UTF8");
fos.write(in.getBytes());

阅读 85

收藏
2022-03-24

共1个答案

小编典典

不幸的是,file.encoding必须在 JVM 启动时指定该属性。当你输入 main
方法时,使用的字符编码和String.getBytes()默认构造函数已经被永久缓存了。InputStreamReader``OutputStreamWriter

正如Edward Grech
所指出的,
在这样的特殊情况下,JAVA_TOOL_OPTIONS
可以 使用环境变量来指定此属性,但通常是这样完成的:

java -Dfile.encoding=UTF-8 鈥� com.x.Main

Charset.defaultCharset()会反映file.encoding属性的变化,但核心 Java
库中需要确定默认字符编码的大部分代码都没有使用这种机制。

在编码或解码时,可以查询file.encoding属性或Charset.defaultCharset()找到当前的默认编码,并使用适当的方法或构造函数重载来指定。

2022-03-24