> I have a web application which requires reading of the chinese files on > the server (Windows NT) and importing them. > > But in java it seems this is impossible. Most of the windows applications > also give error ( "????? cannot be found") > > WIndows NT is english with chinese fonts installed.
Hello! Probably you store filename in string with wrong locale. When you try to store something in String object and explicitly don't give encoding, then JVM use default encoding. In your case default encoding is english because you use english version of WinNT (and I think that def locale on it is english). Could you give your code for details? And one more question. Can you in WinNT explorer create file with chinese characters in name? ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
