If you use the java.util.Properties<http://download.oracle.com/javase/6/docs/api/java/util/Properties.html>class to read from your properties file, depending on how you load the properties, the file should be encoded in ISO-8859-1:
The load(Reader)<http://download.oracle.com/javase/6/docs/api/java/util/Properties.html#load(java.io.Reader)> / store(Writer, String)<http://download.oracle.com/javase/6/docs/api/java/util/Properties.html#store(java.io.Writer, java.lang.String)> methods load and store properties from and to a character based stream in a simple line-oriented format specified below. The load(InputStream)<http://download.oracle.com/javase/6/docs/api/java/util/Properties.html#load(java.io.InputStream)> / store(OutputStream, String)<http://download.oracle.com/javase/6/docs/api/java/util/Properties.html#store(java.io.OutputStream, java.lang.String)> methods work the same way as the load(Reader)/store(Writer, String) pair, except the input/output stream is encoded in ISO 8859-1 character encoding. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
