net.lingala.zip4j.io.ZipInputStream类的使用及代码示例

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

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

ZipInputStream介绍

暂无

代码示例

代码示例来源:origin: net.lingala.zip4j/zip4j

/**
 * Closes the input stream and releases any resources.
 * This method also checks for the CRC of the extracted file.
 * If CRC check has to be skipped use close(boolean skipCRCCheck) method
 * 
 * @throws IOException
 */
public void close() throws IOException {
  close(false);
}

代码示例来源:origin: net.lingala.zip4j/zip4j

public int read(byte[] b) throws IOException {
  return read(b, 0, b.length);
}

代码示例来源:origin: net.lingala.zip4j/zip4j

switch (compressionMethod) {
case Zip4jConstants.COMP_STORE:
  return new ZipInputStream(new PartInputStream(raf, offsetStartOfData, comprSize, this));
case Zip4jConstants.COMP_DEFLATE:
  return new ZipInputStream(new InflaterInputStream(raf, offsetStartOfData, comprSize, this));
default:
  throw new ZipException("compression type not supported");

代码示例来源:origin: com.github.axet/zip4j

switch (compressionMethod) {
case Zip4jConstants.COMP_STORE:
  return new ZipInputStream(new PartInputStream(raf, offsetStartOfData, comprSize, this));
case Zip4jConstants.COMP_DEFLATE:
  return new ZipInputStream(new InflaterInputStream(raf, offsetStartOfData, comprSize, this));
default:
  throw new ZipException("compression type not supported");

代码示例来源:origin: com.github.axet/zip4j

/**
 * Closes the input stream and releases any resources.
 * This method also checks for the CRC of the extracted file.
 * If CRC check has to be skipped use close(boolean skipCRCCheck) method
 * 
 * @throws IOException
 */
public void close() throws IOException {
  close(false);
}

代码示例来源:origin: com.github.axet/zip4j

public int read(byte[] b) throws IOException {
  return read(b, 0, b.length);
}

相关文章