Re: Internationalization -- Issue with Japanese Characters

2007-02-25 Thread Paul Benedict
Laurie, You're technically right. However, I've seen more and more people (including myself) make their property files straight UTF-8, and specify the encoding type when the stream is created. So if you're willing to do a few more hoops, you can have it in any other encoding you desire: http

Re: Internationalization -- Issue with Japanese Characters

2007-02-25 Thread Laurie Harper
The most obvious problem is this: > 1. Storing the Japanese text as Unicode in property > files Property files must be encoded as ASCII with Unicode escapes for non-ASCII characters. Storing them as UTF-8 is not supported and will not work. Use the 'native2ascii' tool that comes with the JKD

Internationalization -- Issue with Japanese Characters

2007-02-24 Thread jacob skariah
Hi All, I am developing an Internatinalized application based on struts frame work. But while displaying Japanese character, I am getting Junk data. I am getting issue with only multibyte characters (Japanese ..) Other laguages are working fine. I have done the following things 1. St