Do you set the character encoding correctly in meta tag content-type
header? I.e. if you use UTF-8 as your Unicode encoding you should pass
browser following:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
The browser may default to non-unicode character encodings like ISO-8859-1
or something else.
Remember also that Java Runtime's default character encoding is ISO-8859-1
so when you use I/O classes and if you use Unicode then you have to tell
the character encoding explicitly to the APIs to be the specific Unicode
encoding. This may not be an issue in your case but if you e.g. read
contents from external sources using I/O classes then it is.
-Aleksi
Tommy Chan wrote:
I'm using S60v5 on Nokia 5800XM....
Gorkem Ercan wrote: