vote up 1 vote down star

I have a Unicode (UTF-8 without BOM) text file within a jar, that's loaded as a resource.

URL resource = MyClass.class.getResource("datafile.csv");
InputStream stream = resource.openStream();
BufferedReader reader = new BufferedReader(
    new InputStreamReader(stream, Charset.forName("UTF-8")));

This works fine on Windows, but on Linux it appear not to be reading the file correctly - accented characters are coming out broken. I'm aware that different machines can have different default charsets, but I'm giving it the correct charset. Why would it not be using it?

flag

71% accept rate
How are you determining if the character are broken? For instance System.out is broken. – Tom Hawtin - tackline Aug 24 at 1:16
The data is delivered as a web page, that's written in UTF-8. The HTTP header, XML header and HTTP-equiv meta all say UTF-8, and the browser confirms this. – Marcus Downing Aug 24 at 1:27

2 Answers

vote up 1 vote down check

The reading part looks correct, I use that all the time on Linux.

I suspect you used default encoding somewhere when you export the text to the web page. Due to the different default encoding on Linux and Windows, you saw different result.

For example, you use default encoding if you do anything like this in servlet,

PrintWriter out = response.getWriter();
out.println(text);

You need to specifically write in UTF-8 like this,

 response.setContentType("text/html; charset=UTF-8");
 out = new PrintWriter(
    new OutputStreamWriter(response.getOutputStream(), "UTF-8"), true);
 out.println(text);
link|flag
vote up 1 vote down

I wonder if reviewing UTF-8 on Linux would help. Could be a setup issue.

link|flag
I'm specifying the decoding scheme, which should mean the host machine's set up would be irrelevant. – Marcus Downing Aug 24 at 1:47

Your Answer

Get an OpenID
or

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