`

zipUtil

    博客分类:
  • zip
zip 
阅读更多

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.RandomAccessFile;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;

public class ZipTool {

 /**
  * 压缩文件
  *
  * @param zipFileName
  *            保存的压缩包文件路径
  * @param inputFile
  *            需要压缩的文件夹或者文件路径
  * @throws Exception
  */
 public static void zip(String zipFileName, String filePath, boolean isDelete)
   throws Exception {

  zip(zipFileName, new File(filePath), isDelete);
 }

 @SuppressWarnings("resource")
 public static void zip(String zipFileName, File inputFile, boolean isDelete)
   throws Exception {
  FileUtils.createDictionary(zipFileName);
  ZipOutputStream out = new ZipOutputStream(new FileOutputStream(
    zipFileName));

  if (!inputFile.exists()) {
   throw new FileNotFoundException("在指定路径未找到需要压缩的文件!");
  }

  zip(out, inputFile, "", isDelete);// 递归压缩方法
  System.out.println("Zip Done.");
  out.close();
 }

 /**
  * 递归压缩方法
  *
  * @param out
  *            压缩包输出流
  * @param f
  *            需要压缩的文件
  * @param base
  *            压缩的路径
  * @throws Exception
  */
 private static void zip(ZipOutputStream out, File f, String base,
   boolean isDelete) throws Exception {
  String path = f.getPath();
  System.out.println("Zipping : " + f.getPath()); // 记录日志,开始压缩
  if (f.isDirectory()) { // 如果是文件夹,则获取下面的所有文件
   File[] fl = f.listFiles();
   out.putNextEntry(new ZipEntry(base + "/"));
   base = base.length() == 0 ? "" : base + "/";
   for (int i = 0; i < fl.length; i++) {
    zip(out, fl[i], base + fl[i].getName(), isDelete);
   }
  } else { // 如果是文件,则压缩
   out.putNextEntry(new ZipEntry(base)); // 生成下一个压缩节点
   FileInputStream in = new FileInputStream(f); // 读取文件内容
   int b;
   while ((b = in.read()) != -1) {
    out.write(b); // 写入到压缩包
   }
   in.close();
  }
  if (isDelete) {
   FileUtils.deleteFile(new File(path));
  }
 }

 public static void unZip(String zipFilePath, String fileSavePath,
   boolean isDelete) throws Exception {

  /*
   * if (!fileSavePath.endsWith("//")) { fileSavePath += "//"; }
   */

  File file = new File(zipFilePath);
  File savePath = new File(fileSavePath);

  // 验证待解压文件是否存在
  if (!file.exists()) {
   throw new FileNotFoundException("在指定路径未找到ZIP压缩文件!");
  }

  // 创建解压缩目录
  if (!savePath.exists()) {
   savePath.mkdirs();
  }

  ZipInputStream zis = new ZipInputStream(new FileInputStream(file));
  FileOutputStream fos = null;
  ZipEntry entry = null;
  int b;

  while ((entry = zis.getNextEntry()) != null) {

   FileUtils.createDictionary(fileSavePath + entry.getName());
   file = new File(fileSavePath + entry.getName());
   if (entry.isDirectory()) {
    // 目录
    System.out.println("create dir : " + file.getPath());
    file.mkdirs();
   } else {
    // 文件
    System.out.println("create file: " + file.getPath());
    /*
     * RandomAccessFile rf = new RandomAccessFile(file, "rwd");
     * rf.seek(0); while ((b = zis.read()) != -1) { //fos.write(b);
     * rf.write(b); } rf.close();
     */

    fos = new FileOutputStream(file);
    while ((b = zis.read()) != -1) {
     fos.write(b);
    }
    fos.close();
   }
  }

  zis.close();
  if (isDelete) {
   new File(zipFilePath).delete();
  }

  System.out.println("unZip Done.");

 }

 public void randomAccessFile(String file) throws Exception {
  RandomAccessFile f = new RandomAccessFile(file, "rw");
  System.out.println("File.lelngth:" + (f.length()) + "B");
  System.out.println("File PointPosition:" + f.getFilePointer());
  f.seek(f.length());
  f.writeBoolean(true);
  f.writeBoolean(false);
  f.writeChar('a');
  f.writeChars("hello!");
  System.out.println("File Length;" + (f.length()) + "B");
  f.seek(0);
  System.out.println(f.readBoolean());
  System.out.println(f.readBoolean());
  System.out.println(f.readLine());
  f.close();
 }

 public void chinesewrit(String toAppend) {
  try {
   // 写入
   int i = 0;
   String record = new String();
   String toCn = null;
   // 处理中文问题
   toCn = new String(toAppend.getBytes("GBK"), "ISO8859_1");
   RandomAccessFile rf = new RandomAccessFile("c://aaa.txt", "rw");
   rf.seek(rf.length());
   rf.writeBytes(toCn + "/n");
   rf.close();
   // 读取
   RandomAccessFile rf2 = new RandomAccessFile("c:/aaa.txt", "r");
   String outCn = null;
   while ((record = rf2.readLine()) != null) {
    i++;
    // 处理中文问题
    outCn = new String(record.getBytes("ISO8859_1"), "GBK");
    System.out.println("Line " + i + ":" + outCn);
   }
   rf2.close();
  } catch (Exception e) {
   e.printStackTrace();
  }
 }

}

分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    ZipUtil文件压缩工具类

    在Java编程语言中,`ZipUtil`文件压缩工具类是一个非常实用的工具,它利用了Java内置的`java.util.zip`包中的`ZipEntry`类来实现文件或目录的压缩功能。`ZipUtil`通常被设计为一个静态类,提供一系列静态方法,使得...

    ZipUtil文件压缩工具类(解决中文乱码)

    `ZipUtil`是一个专门用于文件压缩的工具类,它解决了在处理包含中文字符的文件或目录时可能出现的乱码问题。`ZipEntry`是Java标准库`java.util.zip`包中的核心类,用于表示ZIP文件中的一个条目,它可以是文件或目录...

    java 打包文件(文件夹)为 zip压缩包 java 压缩文件

    `ZIPUtil`可能是一个自定义的工具类,用于简化这个过程。以下是一些关于如何在Java中实现这个功能的关键知识点: 1. **Java档案API (Java Archive API, JAR)**: Java标准库提供了`java.util.zip`包,其中包含用于...

    ZipUtil.rar

    `ZipUtil.rar`这个文件很可能包含了一个Java库,用于处理ZIP压缩格式的文件操作,如遍历、解压和压缩。这里我们将深入探讨与Java、ZIP格式以及文件夹操作相关的知识点。 1. **Java I/O流**:Java提供了丰富的I/O流...

    ZipUtil加密解密压缩工具

    加密压缩 解密解压 java编写 不需jdk环境 exe双击即可运行

    ZipUtil.java

    java的对于zip操作的一个工具类。 其实没啥用处

    ziputil:实用程序来处理zip文件

    ziputil 实用程序来处理zip文件 安装 npm install ziputil --save 用法 const ziputil = require ( 'ziputil' ) ; const urls = [ 'http://www.example.com/x.html' , 'http://www.example.com/y.png' ] ziputil ...

    Java压缩文件工具类ZipUtil使用方法代码示例

    Java压缩文件工具类ZipUtil使用方法代码示例 Java压缩文件工具类ZipUtil是一个功能强大且实用的压缩文件工具类,通过使用Java的Zip输入输出流实现压缩和解压文件。下面是对ZipUtil类的详细介绍和使用方法代码示例。...

    ZIPUtil.java

    java解压以及压缩zip,可运行程序!

    基于Java向zip压缩包追加文件

    当需要向已存在的ZIP文件追加文件时,首先使用`ZipUtil`解压缩ZIP文件到一个临时目录,然后在该目录中添加新的文件,最后重新压缩整个目录并覆盖原有的ZIP文件。以下是大致的步骤: - 使用`ZipUtil`的`unzip`方法...

    ZipUtil .txt

    利用java代码将多个图片一起打包下载工具类,实现语言为java,打包类型为zip格式;具体的实现方式可以参考文件中内容。

    zipUtil.java

    此工具类利用freemarker模板生成单个word文档到浏览器,同时支持多个word文档打包压缩后下载到浏览器,

    zip包的生成与解压

    ZipUtil.unzip("fileName", "fileDir"); fileName是文件的路径+文件名 fileDir是解压后的文件路径 2.生成zip文件 /** * 使用给定密码压缩指定文件或文件夹到指定位置. * &lt;p&gt; * dest可传最终压缩文件存放的...

    Java压缩处理类库ZeroTurnaround.zip

    ZipUtil.unpack(new File&#40;"/tmp/demo.zip"&#41;, new File&#40;"/tmp/demo"&#41;, new NameMapper() { public String map(String name) { return name.startsWith(prefix) ? name.substring(prefix.length()) ...

    压缩工具类改良版(解决中文乱码)

    这里,我们重点讨论如何正确地处理中文字符以避免乱码,并介绍`ZipUtil`和`ZipEntry`这两个关键概念。 `ZipEntry`是Java `java.util.zip`包中的一个类,它代表ZIP档案中的一个条目。当我们创建一个新的`ZipEntry`...

Global site tag (gtag.js) - Google Analytics