I would like to create a directory name which contains some non-ASCII characters. For example:
File exampleDir = new File(fullPath + File.separator + "ĞÜŞİÖÇ-ğüşiöç");
exampledir.mkdir();
But this created directory name like c:\test\�Ü�İÖÇ-ğüşiöç
instead of c:\test\ĞÜŞİÖÇ-ğüşiöç.jpg
.
I tried to start the JVM with -Dfile.encoding=UTF8
but that didn't change anything.