zip으로 압축되서 DB에 저장된 데이터가 있는데.. 운영할때 실 데이터를 확인하기 위한 툴이 필요해 작성한 코드입니다. public HashMap unzip(byte[] baZip){ final int BUFFER_SIZE = 1024 * 4; ByteArrayInputStream bais = new ByteArrayInputStream(baZip); ZipInputStream zis = new ZipInputStream(bais); ZipEntry ze = null; HashMap map = new HashMap(); byte[] buf = new byte[ BUFFER_SIZE ]; try { while( (ze = zis.getNextEntry()) != null ) { ByteArrayOutpu..