Package org.apache.tools.ant.taskdefs.Untar

Examples of org.apache.tools.ant.taskdefs.Untar.UntarCompressionMethod


        delete.execute();
    }

    public static void untarFile(File tarFile, File destDir) throws IOException {
        Untarer untar = new Untarer();
        Untar.UntarCompressionMethod compMethod = new UntarCompressionMethod();
        compMethod.setValue("gzip");
        untar.setCompression(compMethod);
        untar.setDest(destDir);
        untar.setSrc(tarFile);
        untar.execute();
View Full Code Here

TOP

Related Classes of org.apache.tools.ant.taskdefs.Untar.UntarCompressionMethod

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.