Don't know if I understand your question, but if you want to read .properties in UTF-8 format you can do this with JDK 6:
new Properties().load(new InputStreamReader(yourInputStream, Charset.forName("UTF-8"))); On Fri, 19 Mar 2010 07:31:12 +0100, Angelo Chen <angelochen...@yahoo.com.hk> wrote:
Hi, As I understand, Tapestry treats app_?.properties files as UTF-8 encoded and converts them to ISO-8850-1 with unicode escapes. however, this does not apply to the properties files accessed by Properties class, any idea how to do the same thing as what t5 is doing to those app.properties files? Thanks, Angelo
--------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org