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

Does anybody know if there is a simple way to detect character set encoding in Java? It seems to me that some programs have the ability to detect which character set a given piece of data uses, or at least make an aproximation.

I suppose the underlying mechanism would have to decode the data in each character set and pick whichever one has the least undefined characters followed by which character set is more common to break a tie.

Any ideas?

share|improve this question
What input are we talking about? Byte array (binary) or char array (String)? Which ones would you like to distinguish then? It can namely be done for only Unicode charsets (with byte order marks), but not reliability for others. – BalusC Feb 12 '10 at 0:06
1  
This can be tricky. Over at this site pfarland is using some heuristics: forums.sun.com/thread.jspa?threadID=279203#3 – mre Feb 12 '10 at 0:10
1  

2 Answers

up vote -2 down vote accepted

For finding whether data is in any unicode format( UTF-8,UTF-16... etc) you can read the data in byte stream and check the first 4 bytes( BOM size) , and for each encoding it will be different

for eg:

for UTF-8 first 3 bytes will be EF,BB,BF

for encodings other than unicode encodings i am not sure...

share|improve this answer
1  
The optional UTF-8 BOM is only useful if it is present: en.wikipedia.org/wiki/Byte_order_mark – trashgod Feb 12 '10 at 3:03
@sreejith.. the BOM solution above can only be used to tell that a file is not UTF-8(in which case it wont start with the given BOM). But if the BOM is present it can be either UTF-8 or not. For e.g. maybe for some other file the initial bytes "EF,BB,BF" are actually valid data.! – Suraj Chandran Feb 18 '11 at 7:03

Take a look at jchardet, a library ported from the Mozilla browser that specializes in "guessing" the charset of a document.

As an alternative, the cpdetector library, a bit newer, specializes in detecting the code page of a document.

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.