Hi!
I have a problem with encoding in java applet. When I am running it in NetBeans, russian characters in applet are ok. No encoding problems. But, when I am running the same applet through browser, then my russian characters are shown as squares(encoding problem).
Where is the problem?
I have russian translations in .properties files, which has UTF-8 encoding. Also I tried to convert them to UTF-8 using
value = new String(bundle.getString(cLabel).getBytes("ISO-8859-1"), "UTF8");
Some ideas?