码迷,mamicode.com
首页 > 其他好文 > 详细

压缩文件的压缩时候中文代码

时间:2018-08-24 14:03:58      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:exception   oid   ring   buffere   param   tool   cep   odi   导入   

导入

import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;

设置gbk  需放在第一行  找这个错找了半天  

/**
* 压缩文件
* @param inputStream
* @param zipoutputStream
* @param fileName
* @throws IOException
*/
public static void zipFile(InputStream inputStream,ZipOutputStream zipoutputStream,String fileName) throws IOException {
zipoutputStream.setEncoding("gbk");
BufferedOutputStream bos = new BufferedOutputStream (zipoutputStream) ;

ZipEntry ze = new ZipEntry(fileName); //获取文件名
zipoutputStream.putNextEntry(ze); // 设置ZipEntry对象
byte [ ] b = new byte [ 100 ] ;
while ( true )
{
int len = inputStream.read ( b ) ;
if ( len == - 1 )
break ;
bos.write ( b , 0 , len ) ;
}

}

压缩文件的压缩时候中文代码

标签:exception   oid   ring   buffere   param   tool   cep   odi   导入   

原文地址:https://www.cnblogs.com/zcg1051980588/p/9529399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!