gpt4 book ai didi

org.overlord.sramp.atom.archive.expand.ZipToSrampArchive.close()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-15 08:17:31 27 4
gpt4 key购买 nike

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

ZipToSrampArchive.close介绍

[英]This object should be closed once we're done with it. This allows us to clean up some resources.
[中]一旦我们处理完这个物体,它就应该被关闭。这使我们能够清理一些资源。

代码示例

代码示例来源:origin: org.overlord.sramp/s-ramp-atom

/**
 * @param j2sramp
 */
public static void closeQuietly(ZipToSrampArchive j2sramp) {
  try {
    if (j2sramp != null)
      j2sramp.close();
  } catch (IOException e) {
  }
}

代码示例来源:origin: org.overlord.sramp/s-ramp-atom

/**
 * Test method for {@link org.overlord.sramp.atom.archive.jar.ZipToSrampArchive.jar.JarToSrampArchive#JarToSrampArchive(java.io.InputStream)}.
 */
@Test
public void testJarToSrampArchiveInputStream() throws Exception {
  InputStream resourceAsStream = ZipToSrampArchiveTest.class.getResourceAsStream("sample-webservice-0.0.1.jar"); //$NON-NLS-1$
  ZipToSrampArchive j2sramp = null;
  try {
    j2sramp = new ZipToSrampArchive(resourceAsStream){};
    File jarWorkDir = getJarWorkDir(j2sramp);
    Assert.assertNotNull(jarWorkDir);
    Assert.assertTrue(jarWorkDir.isDirectory());
    Collection<File> files = FileUtils.listFiles(jarWorkDir, new String[] {"xsd", "wsdl"}, true); //$NON-NLS-1$ //$NON-NLS-2$
    Assert.assertEquals(2, files.size());
    Set<String> fnames = new HashSet<String>();
    for (File f : files) {
      fnames.add(f.getName());
    }
    Assert.assertTrue(fnames.contains("teetime.xsd")); //$NON-NLS-1$
    Assert.assertTrue(fnames.contains("teetime.wsdl")); //$NON-NLS-1$
  } finally {
    if (j2sramp != null)
      j2sramp.close();
  }
}

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