I am programming in Java

I have the code as:

byte[] b = test.getBytes();

In the api it is specified that if we do not specify character encoding it takes the default platform character encoding.

What is meant by "default platform character encoding" ?

Does it mean the Java encoding or the OS encoding ?

If it means OS encoding the how can i check the default character encoding of Windows and Linux ? Is there anyway we can get the default character encoding using command line ?

link|improve this question

59% accept rate
You should clarify exactly what you mean. Start with why you want the information. – Matthew Flaschen Apr 20 '10 at 17:58
If you can't find the questions you previously asked, just click anywhere where your name appears as a link like here: Anand and in the top bar. You can find the questions there, you've pretty much unaccepted questions (note: questions are spread over pages!). Review them once again and vote/accept some. – BalusC Apr 20 '10 at 18:39
feedback

2 Answers

up vote 3 down vote accepted

It means the default character encoding of the JVM that you're running on,

To check the default encoding you can do the following:

System.getProperty("file.encoding");

that will return the default encoding (and the one used by getBytes() above).

link|improve this answer
1  
...but don't bother. There are very few valid reasons to use String.getBytes(), and when you do use it you should always specify an encoding rather than rely on the default. The same goes for the new String(byte[]) constructors. – Alan Moore Apr 20 '10 at 19:40
feedback

The system property file.encoding is JVM vendor specific. In this specific case it's only applicable on the Sun JVM and it may not work on JVM's from other vendors than Sun.

Rather use Java SE API provided Charset#defaultCharset().

Charset defaultCharset = Charset.defaultCharset();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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