Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any idea about gettin the real encoding of a file like .html .txt .java and etc in java?

Since some source codes are not utf-8,I wantto change them to utf-8.

share|improve this question
1  
Possible duplicate of stackoverflow.com/questions/774075/… – Lars Noschinski Mar 10 '11 at 8:46

2 Answers

up vote 3 down vote accepted

In general, it is not possible to always detect exactly what the character encoding of a text file is - there's nothing stored in a text file that tells you explicitly what the character encoding is. You can make some intelligent guesses, but don't expect that you'll always be able to find out exactly what the character encoding of a text file is.

The link that cebewee posted in the comments has more information on how to detect what the character encoding of a text file is.

share|improve this answer

You can use tools like UTFCast to batch convert file encoding. Just run them on all of your source files and you should be done. On linux, you can use 'iconv' to convert file encoding.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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