Java tutorial
//package com.java2s; //License from project: Apache License import java.io.File; import java.util.zip.ZipFile; public class Main { public static ZipFile newZipFile(File file) { try { return new ZipFile(file); } catch (final Exception e) { throw new RuntimeException(e); } } }