public class Lzma
extends java.lang.Object
Constructor and Description |
---|
Lzma() |
Modifier and Type | Method and Description |
---|---|
static void |
compress(java.io.InputStream in,
java.io.OutputStream out)
Compresses the given
InputStream into the given OutputStream . |
static void |
decompress(java.io.InputStream in,
java.io.OutputStream out)
Decompresses the given
InputStream into the given OutputStream . |
public static void compress(java.io.InputStream in, java.io.OutputStream out) throws java.io.IOException
InputStream
into the given OutputStream
.in
- the InputStream
to compressout
- the OutputStream
to compress tojava.io.IOException
public static void decompress(java.io.InputStream in, java.io.OutputStream out) throws java.io.IOException
InputStream
into the given OutputStream
.in
- the InputStream
to decompressout
- the OutputStream
to decompress tojava.io.IOException