vote up 2 vote down star

Whether the default encoding for jvm is UTF-8 or some other? In jvm where it will be mentioned?

flag

18% accept rate

3 Answers

vote up 16 vote down

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 Charset.defaultCharset(), if that's any use to you, though really you should make a point of always specifying encoding explicitly when you can do so.

link|flag
vote up 2 vote down

It's going to be locale-dependent. Different locale, different default encoding.

link|flag
vote up 2 vote down

Note that you can change the default encoding of the JVM using the confusingly-named property file.encoding.

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.