gpt4 book ai didi

org.apache.maven.index.util.zip.ZipHandle.close()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 09:42:01 27 4
gpt4 key购买 nike

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

ZipHandle.close介绍

[英]Closes the zip handle (performs resource cleanup). This method should be called when this zip handle is not needed anymore, and calling it should be obligatory to prevent resource leaks.
[中]关闭zip句柄(执行资源清理)。当不再需要这个zip句柄时,应该调用这个方法,并且调用它应该是防止资源泄漏的必要条件。

代码示例

代码示例来源:origin: org.apache.maven.indexer/indexer-core

public static void close( ZipHandle handle )
    throws IOException
  {
    if ( handle != null )
    {
      handle.close();
    }
  }
}

代码示例来源:origin: org.jboss.windup.org.apache.maven.indexer/indexer-core

public static void close( ZipHandle handle )
    throws IOException
  {
    if ( handle != null )
    {
      handle.close();
    }
  }
}

代码示例来源:origin: apache/maven-indexer

public static void close( ZipHandle handle )
    throws IOException
  {
    if ( handle != null )
    {
      handle.close();
    }
  }
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com