如何以编程方式正确设置 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());