# xzip **Repository Path**: bootable/xzip ## Basic Information - **Project Name**: xzip - **Description**: 读取数据并输出解压缩后数据 - **Primary Language**: Groovy - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-04-10 - **Last Updated**: 2022-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 解压缩工具 ## 简介 1. 可直接将输入数据解压并输出 > 目前仅支持gzip解压,其他格式未实现。 ## 使用举例 > `resources`目录下`response.txt`为Wireshark抓包后得到的HTTP回复报文(DriverToolkit 8.5请求报文); > `response.hex`是处理后的报文有效载荷,可与头部的长度字段进行校验; > `response-uncompress.hex`是经过工具解压缩后的输出内容; > 目前仅支持两个参数:--input,--output,结合spring-boot框架实现; > --input=/path/to/input --output=/path/to/output > 遗憾的是,解压缩后并未找到有效数据,怀疑数据经过了加密而非仅仅是压缩;