org.zeroturnaround.zip.ZipUtil.packEntries()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(88)

本文整理了Java中org.zeroturnaround.zip.ZipUtil.packEntries()方法的一些代码示例,展示了ZipUtil.packEntries()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipUtil.packEntries()方法的具体详情如下:
包路径:org.zeroturnaround.zip.ZipUtil
类名称:ZipUtil
方法名:packEntries

ZipUtil.packEntries介绍

[英]Compresses the given files into a ZIP file.

The ZIP file must not be a directory and its parent directory must exist.
[中]将给定文件压缩为ZIP文件。
ZIP文件不能是目录,其父目录必须存在。

代码示例

代码示例来源:origin: zeroturnaround/zt-zip

/**
 * Compresses the given file into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param fileToPack
 *          file that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 * @param mapper
 *          call-back for renaming the entries.
 */
public static void packEntry(File fileToPack, File destZipFile, NameMapper mapper) {
 packEntries(new File[] { fileToPack }, destZipFile, mapper);
}

代码示例来源:origin: zeroturnaround/zt-zip

/**
 * Compresses the given files into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param filesToPack
 *          files that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 */
public static void packEntries(File[] filesToPack, File destZipFile) {
 packEntries(filesToPack, destZipFile, IdentityNameMapper.INSTANCE);
}

代码示例来源:origin: zeroturnaround/zt-zip

/**
 * Compresses the given files into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param filesToPack
 *          files that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 * @param mapper
 *          call-back for renaming the entries.
 */
public static void packEntries(File[] filesToPack, File destZipFile, NameMapper mapper) {
 packEntries(filesToPack, destZipFile, mapper, DEFAULT_COMPRESSION_LEVEL);
}

代码示例来源:origin: zeroturnaround/zt-zip

/**
 * Compresses the given files into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param filesToPack
 *          files that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 * @param compressionLevel
 *          ZIP file compression level (speed versus filesize), e.g. <code>Deflater.NO_COMPRESSION</code>, <code>Deflater.BEST_SPEED</code>, or
 *          <code>Deflater.BEST_COMPRESSION</code>
 */
public static void packEntries(File[] filesToPack, File destZipFile, int compressionLevel) {
 packEntries(filesToPack, destZipFile, IdentityNameMapper.INSTANCE, compressionLevel);
}

代码示例来源:origin: jphp-group/jphp

@Signature
public void __construct(File file, boolean create) throws FileNotFoundException {
  if (!file.isFile()) {
    if (create) {
      ZipUtil.packEntries(new File[0], file);
    } else {
      throw new FileNotFoundException(file.getPath() + " not found, use ZipFile::create() to create zip archive.");
    }
  }
  this.zipFile = file;
}

代码示例来源:origin: org.zeroturnaround/zt-zip

/**
 * Compresses the given files into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param filesToPack
 *          files that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 */
public static void packEntries(File[] filesToPack, File destZipFile) {
 packEntries(filesToPack, destZipFile, IdentityNameMapper.INSTANCE);
}

代码示例来源:origin: org.zeroturnaround/zt-zip

/**
 * Compresses the given file into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param fileToPack
 *          file that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 * @param mapper
 *          call-back for renaming the entries.
 */
public static void packEntry(File fileToPack, File destZipFile, NameMapper mapper) {
 packEntries(new File[] { fileToPack }, destZipFile, mapper);
}

代码示例来源:origin: org.zeroturnaround/zt-zip

/**
 * Compresses the given files into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param filesToPack
 *          files that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 * @param mapper
 *          call-back for renaming the entries.
 */
public static void packEntries(File[] filesToPack, File destZipFile, NameMapper mapper) {
 packEntries(filesToPack, destZipFile, mapper, DEFAULT_COMPRESSION_LEVEL);
}

代码示例来源:origin: org.zeroturnaround/zt-zip

/**
 * Compresses the given files into a ZIP file.
 * <p>
 * The ZIP file must not be a directory and its parent directory must exist.
 *
 * @param filesToPack
 *          files that needs to be zipped.
 * @param destZipFile
 *          ZIP file that will be created or overwritten.
 * @param compressionLevel
 *          ZIP file compression level (speed versus filesize), e.g. <code>Deflater.NO_COMPRESSION</code>, <code>Deflater.BEST_SPEED</code>, or
 *          <code>Deflater.BEST_COMPRESSION</code>
 */
public static void packEntries(File[] filesToPack, File destZipFile, int compressionLevel) {
 packEntries(filesToPack, destZipFile, IdentityNameMapper.INSTANCE, compressionLevel);
}

相关文章