Class Pack200CompressorOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.commons.compress.compressors.CompressorOutputStream
-
- org.apache.commons.compress.compressors.pack200.Pack200CompressorOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class Pack200CompressorOutputStream extends CompressorOutputStream
An output stream that compresses using the Pack200 format.- Since:
- 1.3
-
-
Constructor Summary
Constructors Constructor Description Pack200CompressorOutputStream(OutputStream out)Compresses the given stream, caching the compressed data in memory.Pack200CompressorOutputStream(OutputStream out, Map<String,String> props)Compresses the given stream, caching the compressed data in memory and using the given properties.Pack200CompressorOutputStream(OutputStream out, Pack200Strategy mode)Compresses the given stream using the given strategy to cache the results.Pack200CompressorOutputStream(OutputStream out, Pack200Strategy mode, Map<String,String> props)Compresses the given stream using the given strategy to cache the results and the given properties.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidfinish()voidwrite(byte[] b)voidwrite(byte[] b, int from, int length)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
flush, nullOutputStream
-
-
-
-
Constructor Detail
-
Pack200CompressorOutputStream
public Pack200CompressorOutputStream(OutputStream out) throws IOException
Compresses the given stream, caching the compressed data in memory.- Parameters:
out- the stream to write to- Throws:
IOException- if writing fails
-
Pack200CompressorOutputStream
public Pack200CompressorOutputStream(OutputStream out, Pack200Strategy mode) throws IOException
Compresses the given stream using the given strategy to cache the results.- Parameters:
out- the stream to write tomode- the strategy to use- Throws:
IOException- if writing fails
-
Pack200CompressorOutputStream
public Pack200CompressorOutputStream(OutputStream out, Map<String,String> props) throws IOException
Compresses the given stream, caching the compressed data in memory and using the given properties.- Parameters:
out- the stream to write toprops- Pack200 properties to use- Throws:
IOException- if writing fails
-
Pack200CompressorOutputStream
public Pack200CompressorOutputStream(OutputStream out, Pack200Strategy mode, Map<String,String> props) throws IOException
Compresses the given stream using the given strategy to cache the results and the given properties.- Parameters:
out- the stream to write tomode- the strategy to useprops- Pack200 properties to use- Throws:
IOException- if writing fails
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int from, int length) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
finish
public void finish() throws IOException- Throws:
IOException
-
-