ave Cesar
you can set the file.encoding property of your JVM to UTF-8 so all locale/encoding sensitive API will consider decoded Strings as UTF8.
For example, you can set it in your command line that launch your Java app :
java -Dfile.encoding=UTF-8 ....
You can also refer to This SO question for a complete explanation on Tomcat setup.
