Re: MessageResources file encoding

2005-08-03 Thread Konrad Billewicz
Thank you for your advices. Following them I decided to resign from changing encoding. Instead I have found an Eclipse plugin (Properties Editor which can be downloaded at http://eclipse-plugins.info) which allows easy edition of properties files. It works fine and solves my problem. Best reg

RE: MessageResources file encoding

2005-08-03 Thread Chatzinikos, Fotis, VF-GR Consultant
ewicz Sent: Wednesday, August 03, 2005 2:28 PM To: user@struts.apache.org Subject: MessageResources file encoding I'm unable to find an easy solution for my encoding problem with file MessageResources.properties declared in struts-config.xml as: File is encoded using ISO-8859-2 (Polish) while Strut

Re: MessageResources file encoding

2005-08-03 Thread Jason Lea
Hi Konrad, It isn't even UTF, it's an older Java Properties file format: http://java.sun.com/j2se/1.4.2/docs/api/java/util/Properties.html You need to use native2ascii with something like native2ascii -encoding ISO-8859-2 input.properties output.properties it turns the non-ascii characters int

MessageResources file encoding

2005-08-03 Thread Konrad Billewicz
I'm unable to find an easy solution for my encoding problem with file MessageResources.properties declared in struts-config.xml as: File is encoded using ISO-8859-2 (Polish) while Struts interprets it as UTF. In documentation I'm not able find any "encoding" property for this tag. I, of cours