public class DeflateUtils
extends java.lang.Object
Constructor and Description |
---|
DeflateUtils() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
deflate(byte[] in)
Returns a deflated copy of the input array.
|
static byte[] |
inflate(byte[] in)
Returns an inflated copy of the input array.
|
static byte[] |
inflateBestEffort(byte[] in)
Returns an inflated copy of the input array.
|
static byte[] |
inflateBestEffort(byte[] in,
int sizeLimit)
Returns an inflated copy of the input array, truncated to
sizeLimit bytes, if necessary. |
public static final byte[] inflateBestEffort(byte[] in)
null
is returned.public static final byte[] inflateBestEffort(byte[] in, int sizeLimit)
sizeLimit
bytes, if necessary. If the deflated input has been
truncated or corrupted, a best-effort attempt is made to inflate as much as
possible. If no data can be extracted null
is returned.public static final byte[] inflate(byte[] in) throws java.io.IOException
java.io.IOException
- if the input cannot be properly decompressedpublic static final byte[] deflate(byte[] in)
Copyright © 2019 The Apache Software Foundation