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