Hi, I have a struts based application which supports several locales (italian, french, korean etc). There are different .properties files to accomplish this. The respective .properties files of each language were translated recently. When I bring up the app in Korean, it seems like the strings are not displayed correctly. I went thru some web sites and found out that I had to convert the Korean translated file to ascii. I tried to use "native2ascii" tool shipped with Java1.4.2 and was getting back a sun.io.MalformedException. I used EUC-KR as the encoding. Am I doing something wrong here? When I bring up the GUI in French, it seemed like the strings were being displayed correctly, but I can't tell as I don't speak French. Do I have to do a native2ascii conversion on the French and Italian files too? If yes, what encoding should I use?
Help appreciated, Kumar