net.lingala.zip4j.io.ZipInputStream.close()方法的使用及代码示例

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

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

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);
}

相关文章