Package org.apache.ant.compress.taskdefs

Examples of org.apache.ant.compress.taskdefs.Unzip.execute()


    public static void unzip(File zip, File dest) {
        Unzip u = new Unzip();
        u.setSrc(zip);
        u.setDest(dest);
        u.execute();
    }

    public static File wget(URL url) throws IOException {
        File zip = Files.createTempFile("tmp", "zip").toFile();
        FileUtils.copyURLToFile(url, zip);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.