thx for your investigation,
i'll try it with chnaged encoding of propery-file (at the moment i
load it via Properties.load.getresourceasstream(file)). but is there a
way to let my code let the reencoding, so that properties-file could
be utf-8?
('til now i thought that all java encoding is utf-x by default :-|)
On 22 Mrz., 18:26, Thomas Broyer <[email protected]> wrote:
> 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.htm...)>
> / store(Writer,
> String)<http://download.oracle.com/javase/6/docs/api/java/util/Properties.htm...,
> 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.htm...)>
> / store(OutputStream,
> String)<http://download.oracle.com/javase/6/docs/api/java/util/Properties.htm...,
> 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.