Examples of UntarCompressionMethod


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

Examples of org.codehaus.plexus.archiver.tar.TarUnArchiver.UntarCompressionMethod

        this.setupCompressionMethod();
    }

    private void setupCompressionMethod()
    {
      UntarCompressionMethod untarCompressionMethod = new UntarCompressionMethod( UntarCompressionMethod.BZIP2 );
      this.setCompression( untarCompressionMethod );
    }
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.