Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
        }
    }
}