I have a properties file where i got letters as keys and some integer value. Something like this:
a=1
b=2
c=5
...
Everything works but when I use Hungarian letters as keys (for example: "ő" or "ű") I got the following exception: "Can't find resource for bundle java.util.PropertyResourceBundle, key ő." I want something like that:
ő=7
I guess my properties file's encoding isn't UTF-8 but how can I change it?