本文整理了Java中net.lingala.zip4j.io.ZipInputStream
类的一些代码示例,展示了ZipInputStream
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipInputStream
类的具体详情如下:
包路径:net.lingala.zip4j.io.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);
}
内容来源于网络,如有侵权,请联系作者删除!