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

I have a UTF-8 file stored inside a java jar file. I am trying to read it using the method getResourceAsStream(), but the input stream reader that is returned by the function uses the default encoding, which is the ANSI one under Windows.

How can I read a UTF-8 text file from inside a jar?

share|improve this question

2 Answers

Create an InputStreamReader around the InputStream, specifying UTF-8 as the encoding.

Note: I'm not sure what you mean by "the input stream reader that is returned by the function uses the default encoding" - getResourceAsStream() returns an InputStream, which reads binary data. That's not a reader at all (dealing with character data).

share|improve this answer
Thanks, I was stuck looking at the return type of getResourceAsStream and thinking that it returns an InputStreamReader, whereas it returns an InputStream. That's what you get if you program while tired :-). – axilmar Jun 23 '10 at 12:04

native2ascii may help you.
it converts non-ascii characters to equivalent character codes inside your utf-8 file.
for example;
native2ascii -encoding Cp1254 input_file.txt output_file.properties
enjoy...

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.