Package net.java.trueupdate.core.zip.io

Examples of net.java.trueupdate.core.zip.io.ZipFileStore


    private final String entryName;

    public ZipCommand(File zipFile,
                      File fileOrDirectory,
                      String entryName) {
        this(new ZipFileStore(zipFile), fileOrDirectory, entryName);
    }
View Full Code Here


    private final ZipSource source;
    private final File directory;

    public UnzipCommand(File zipFile, File directory) {
        this(new ZipFileStore(zipFile), directory);
    }
View Full Code Here

    public static void zip(File zipFile,
                           File fileOrDirectory,
                           String entryName)
    throws IOException {
        zip(new ZipFileStore(zipFile), fileOrDirectory, entryName);
    }
View Full Code Here

        ZipSinks.execute(new ZipTask()).on(sink);
    }

    public static void unzip(File zipFile, File directory)
    throws IOException {
        unzip(new ZipFileStore(zipFile), directory);
    }
View Full Code Here

TOP

Related Classes of net.java.trueupdate.core.zip.io.ZipFileStore

Copyright © 2018 www.massapicom. 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.