ZipOutputStream FTPClient

时间:2012-09-24 06:27:08

标签: zipoutputstream

FTPClient ftpClient;

ZipOutputStream zipOut = null;   
zipOut = new ZipOutputStream(ftpClient.storeFileStream("a.zip")); 

String str;
byte []conarr=str.getBytes();

zipOut.putNextEntry(new ZipEntry("1.txt")); 
zipOut.write(conarr);
zipOut.close();

如果str只有几个字符,那没关系, 但如果str是几十KB,则zip文件有错误。

0 个答案:

没有答案