public static InputStream gunzip(final byte[] bytes) throws IOException { Assert.notNull(bytes, "bytes"); return IOUtils.gunzip(new ByteArrayInputStream(bytes)); }