Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为 Java 通过系统语言环境确定“file.encoding”系统属性。
但在我的系统中,系统区域设置为“ko_kr.UTF-8”,“file.encoding”为“ANSI_X3.4-1968”。
Java 如何确定“file.encoding”系统属性?
来自以下链接的本机代码填充属性(适用于 solaris、Linux 操作系统)
在本机方法加载系统属性下方。
private static native Properties initProperties(Properties props);
下面的链接是加载属性的本机代码链接(在第 187 行之后)
设置java属性的源码