文件压缩,

    /** 压缩一个文件 */ 
    private void compressFile(File file, TemplateEntity te, ZipOutputStream out, String basedir) {   
        if (!file.exists()) {   
           return;   
        }  
        BufferedInputStream bis = null;
        ZipEntry entry = null;
        try {
         //设置文件名编码
         out.setEncoding("GBK");
         if( te != null ){
          entry = new ZipEntry(basedir+te.getName()+".html");
          //向rar中添加一个压缩文件
             out.putNextEntry(entry);
          //写入文本内容
          out.write(XMLUtil.deleteDomain(te).getBytes("UTF8"));
          
         }else{
             bis = new BufferedInputStream(  new FileInputStream(file));  
             //创建rar文件中的 压缩文件
             entry = new ZipEntry(basedir + file.getName()); 
             //向rar中添加一个压缩文件
             out.putNextEntry(entry);  
            
             int count;  
             byte data[] = new byte[BUFFER];  
             while ((count = bis.read(data, 0, BUFFER)) != -1) {  
                 out.write(data, 0, count);  
             }  
             bis.close();
         }
              
        } catch (Exception e) {  
            throw new RuntimeException(e);  
        }  
    }  

压缩完的zip包没有问题,但是我发现如果在你要压缩的文件在不同的文件夹中,很有可能这些文件夹中的文件有重名的,当压缩完之后,在压缩包中就会出现很多重复的文件,之前实现这个功能的时候原以为如果在压缩的时候如果有重复的文件会自动覆盖的,呜呜呜,有哪位碰到类似的问题,可以交流下

你可能感兴趣的:(html)