https://github.com/dorkbox/cabparser
Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
https://github.com/dorkbox/cabparser
Last synced: about 1 year ago
JSON representation
Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
- Host: GitHub
- URL: https://github.com/dorkbox/cabparser
- Owner: dorkbox
- License: other
- Created: 2014-12-18T17:28:28.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T10:16:17.000Z (almost 3 years ago)
- Last Synced: 2025-06-03T15:32:26.280Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 419 KB
- Stars: 13
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CAB PARSER
===========
###### [](https://git.dorkbox.com/dorkbox/CabParser) [](https://github.com/dorkbox/CabParser) [](https://gitlab.com/dorkbox/CabParser)
Provides a means to parse and extract data from Microsoft CAB files, from Java.
Specifically, this project was created to extract files from within a .cab which are compressed via the LZX compression algorithm.
Microsoft CAB file format: http://msdn.microsoft.com/en-us/library/bb417343.aspx
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 8+
Maven Info
---------
```
...
com.dorkbox
CabParser
3.4
```
Gradle Info
---------
```
dependencies {
...
implementation("com.dorkbox:CabParser:3.4")
}
```
License
---------
This project is © 2023 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further
references.