vote up 0 vote down star

I have encoding problem with iText (http://www.lowagie.com/iText/). I load data from database and insert it as html to pdf with iText, for some reason my non-english (Finnish ä,ö etc) characters don't show up correctly. Following example shows how insert text to html:

	text = "<p>" + data + "</p>";
	HTMLWorker htmlWorker = new HTMLWorker(doc);
	InputStream is = new ByteArrayInputStream(text.getBytes());
	InputStreamReader isr = new InputStreamReader(is);
	htmlWorker.parse(isr);

UPDATE: If have to add that it's working in my Windows Vista system, but not in Linux system.

flag

2 Answers

vote up 1 vote down check

Is your default Locale set properly? Make sure that Locale.getDefault() is returning the value it should be. This could be different on windows and linux, if one of them hasn't been set up correctly.

link|flag
Hi, thanx, locale was different on linux server, so it must be that what is causing this problem... – newbie Oct 12 at 7:40
Just tested, I changed locale and locale changed, but I still get wrong characters – newbie Oct 12 at 7:47
Hmm.. It was Firefox cache that chached wrong version restartring firefox helped and now everything is ok. – newbie Oct 12 at 7:49
vote up 1 vote down

Try using InputStreamReader with appriopriate charset name.

link|flag

Your Answer

Get an OpenID
or

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