https://bz.apache.org/bugzilla/show_bug.cgi?id=60855
--- Comment #1 from Greg <[email protected]> --- This bug makes properties files unusable for storing data in Central and Easter European countries. For example, a property containing an "é" (U+00E9) in the user.properties file becomes "Ă©" (U+0102, U+00A9) during runtime. I suspect it's also because the file is read from an InputStreamReader, instead of a Reader with UTF-8 encoding. The main problem is that, on the other hand, when reading properties from the .jmx file, it's perfectly read in UTF-8. So I cannot convert ALL of my properties from UTF-8-read-as-Latin-1 to real UTF-8, because I don't know where has a property come from. That means I'm stuck with either using a .properties file or the .jmx. -- You are receiving this mail because: You are the assignee for the bug.
