I am facing URI encoding problem with non-ascii chars like chinese and japanese. if i am giving characters like "隐私权政策", it does not seems to make proper URI. any pointers will be helpful. here is a code snipp
String path ="c:\隐私权政策.txt";
File f = new File(path);
URI uri = f.toURI();
System.out.println(uri);
uri = new URI("file", null, uri.getPath(), null, null);
System.out.println(uri);
am I missing something here? Thanks for your help.