Here you can find the source of closeQietly(ZipFile zipFile)
public static void closeQietly(ZipFile zipFile)
//package com.java2s; //License from project: Apache License import java.io.IOException; import java.util.zip.ZipFile; public class Main { public static void closeQietly(ZipFile zipFile) { try {/*w w w . j a v a 2 s. co m*/ zipFile.close(); } catch (final IOException e) { throw new RuntimeException(e); } } }