Originally posted by veli akcakaya: - my properties file is UTF-8
There is your problem. Your properties file should be ISO-8859-1. Yes, I know that ISO-8859-1 doesn't support all the letters in Turkish. That's why the properties file format allows for various escapings, which you can read about in its documentation.
Yes I had this problem before ... my solution was making my compiler UTF-8 how is that ... I'm using JDeveloper so I made it that way ... I want to my project environment and I changed my compiler unicode ... Best regards.
except the input/output stream is encoded in ISO 8859-1 character encoding. Characters that cannot be directly represented in this encoding can be written using Unicode escapes ; only a single 'u' character is allowed in an escape sequence. The native2ascii tool can be used to convert property files to and from other character encodings.