On Wednesday, March 23, 2011 7:10:00 AM UTC+1, tanteanni wrote: > > 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?
Just wrap the InputStream returned from getResourceAsStream within an InputStreamReader, specifying the UTF-8 encoding; and thus use the load(Reader) overload of Properties instead of the load(InputStream) one. -- 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.
