Package com.facebook.presto.hive.shaded.org.apache.commons.compress.compressors.gzip

Examples of com.facebook.presto.hive.shaded.org.apache.commons.compress.compressors.gzip.GzipCompressorOutputStream


    FileOutputStream out = null;
    try {
      out = new FileOutputStream(new File(parentDir, outputFile));
      TarArchiveOutputStream tOut = new TarArchiveOutputStream(
          new GzipCompressorOutputStream(new BufferedOutputStream(out)));

      for (int i = 0; i < inputFiles.length; i++) {
        File f = new File(parentDir, inputFiles[i]);
        TarArchiveEntry tarEntry = new TarArchiveEntry(f, f.getName());
        tOut.setLongFileMode(TarArchiveOutputStream.LONGFILE_GNU);
View Full Code Here

TOP

Related Classes of com.facebook.presto.hive.shaded.org.apache.commons.compress.compressors.gzip.GzipCompressorOutputStream

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.