org.apache.poi.openxml4j.util.ZipEntrySource.close()方法的使用及代码示例

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

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

ZipEntrySource.close介绍

[英]Indicates we are done with reading, and resources may be freed
[中]表明我们已经完成了阅读,资源可能会被释放

代码示例

代码示例来源:origin: org.apache.poi/poi-ooxml

/**
 * Close the package without saving the document. Discard all the changes
 * made to this package.
 */
@Override
protected void revertImpl() {
  try {
    if (this.zipArchive != null) {
      this.zipArchive.close();
    }
  } catch (IOException e) {
    // Do nothing, user dont have to know
  }
}

代码示例来源:origin: apache/tika

private static void closeQuietly(ZipEntrySource zipEntrySource) {
  if (zipEntrySource == null) {
    return;
  }
  try {
    zipEntrySource.close();
  } catch (IOException e) {
    //swallow
  }
}
/**

代码示例来源:origin: org.apache.poi/poi-ooxml

zipEntrySource.close();

代码示例来源:origin: org.apache.tika/tika-parsers

private static void closeQuietly(ZipEntrySource zipEntrySource) {
  if (zipEntrySource == null) {
    return;
  }
  try {
    zipEntrySource.close();
  } catch (IOException e) {
    //swallow
  }
}
/**

代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev

/**
 * Close the package without saving the document. Discard all the changes
 * made to this package.
 */
@Override
protected void revertImpl() {
  try {
    if (this.zipArchive != null)
      this.zipArchive.close();
  } catch (IOException e) {
    // Do nothing, user dont have to know
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi

/**
 * Close the package without saving the document. Discard all the changes
 * made to this package.
 */
@Override
protected void revertImpl() {
  try {
    if (this.zipArchive != null) {
      this.zipArchive.close();
    }
  } catch (IOException e) {
    // Do nothing, user dont have to know
  }
}

代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev

this.zipArchive.close();

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi

zipEntrySource.close();

相关文章