Good day,

Our application receives files from our users, and those files must be validated if they are of the encoding type that we support (i.e. UTF-8, Shift-JIS, EUC-JP), and once that file is validated, we would also need to save that file in our system and its encoding as meta-data.

Currently, we're using JCharDet (which is a java port of mozilla's character detector), but there are some Shift-JIS characters that it seems to fail to detect as valid Shift-JIS characters.

Any ideas what else we can use?

Thanks, Franz

link|improve this question

62% accept rate
1  
How does the application receive files? If it is through HTTP, this should be stored in the mime headers. – Peter DeWeese Sep 10 '10 at 12:26
@Peter: no, certainly not. The mime header only represents the encoding of the HTTP request body, not the file's original encoding. – BalusC Sep 10 '10 at 14:35
feedback

1 Answer

Apache Tika is a content analysis toolkit that is mainly useful for determining file types — as opposed to encoding schemes — but it does returns content encoding information for text file types. I don't know if its algorithms are as advanced as JCharDet, but it might be worth a try...

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.