本文整理了Java中net.lingala.zip4j.io.ZipInputStream.close()
方法的一些代码示例,展示了ZipInputStream.close()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipInputStream.close()
方法的具体详情如下:
包路径:net.lingala.zip4j.io.ZipInputStream
类名称:ZipInputStream
方法名:close
[英]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
[中]关闭输入流并释放所有资源。此方法还检查提取文件的CRC。如果必须跳过CRC检查,请使用close(布尔skipCRCCheck)方法
代码示例来源: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: 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);
}
内容来源于网络,如有侵权,请联系作者删除!