Examples of GZIPOutputStreamForPhar


Examples of org.eclipse.php.internal.core.tar.GZIPOutputStreamForPhar

public class GZPharEntryBufferedOutputStream extends
    PharEntryBufferedOutputStream {

  public GZPharEntryBufferedOutputStream(OutputStream innerStream)
      throws IOException {
    super(new GZIPOutputStreamForPhar(innerStream));
  }
View Full Code Here

Examples of org.eclipse.php.internal.core.tar.GZIPOutputStreamForPhar

        currentOutputStream = fileContentStream;
      } else if (currentEntry.getMethod() == PharConstants.BZ2_COMPRESSED) {
        currentOutputStream = new CBZip2OutputStreamForPhar(
            fileContentStream);
      } else if (currentEntry.getMethod() == PharConstants.GZ_COMPRESSED) {
        currentOutputStream = new GZIPOutputStreamForPhar(
            fileContentStream);
      }
      currentOutputStream = new CRCableOutputStream(currentOutputStream);
    }
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.