On Wed, 28 Apr 2021 22:24:31 GMT, Naoto Sato <na...@openjdk.org> wrote:

> After some internal discussion, we thought it was good to expose the native 
> environment's default character encoding, which Charset.defaultCharset() is 
> currently based on. This way applications will have a better migration path 
> after the [JEP 400](https://openjdk.java.net/jeps/400) is implemented, in 
> which Charset.defaultCharset() will return UTF-8, but the value of this new 
> system property will remain intact. A 
> [CSR](https://bugs.openjdk.java.net/browse/JDK-8266075) has been filed with 
> more detailed information.

src/java.base/share/classes/jdk/internal/util/SystemProps.java line 69:

> 67:                 ? raw.propDefault(Raw._sun_jnu_encoding_NDX)
> 68:                 : raw.propDefault(Raw._file_encoding_NDX));
> 69:         put(props, "native.encoding", nativeEncoding);

Shouldn't native.encoding be biased toward sun.jnu.encoding rather than 
file.encoding? Or maybe you'll change it when preparing the changes for JEP 400?

-------------

PR: https://git.openjdk.java.net/jdk/pull/3777

Reply via email to