Is UTF-8 the default encoding in Java?
If not, how can I know which encoding is used by default?
|
|
|||||
|
|
The default character set of the JVM is that of the system it's running on. There's no specific value for this and you shouldn't generally depend on the default encoding being any particular value. It can be accessed at runtime via |
|||||||||
|
|
Note that you can change the default encoding of the JVM using the confusingly-named property If your application is particularly sensitive to encodings (perhaps through usage of APIs implying default encodings), then you should explicitly set this on JVM startup to a consistent (known) value. |
|||||
|
|
It's going to be locale-dependent. Different locale, different default encoding. |
|||
|
|