hi
Can I use ZipOutputStream.putNextEntry to write Japanese double bytes
filename in a zip file?
I used putNextEntry to write Japanese double bytes filename in a zip
file,but by ZipInputStream.getNextEntry and other unzip tools,I got a
different filename in zipped file,not in Japanese format.why?
.
.
import java.io.*;
import java.util.*;
import java.util.zip.*;
ZipOutputStream out;
ZipEntry myZE;
.
.
myZE = new ZipEntry( myfilename );// myfilename is in Japanese double bytes
format
out.putNextEntry( myZE );
.
.
Thanks
Jia
___________________________________________________________________________
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
