You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
18 hours ago | |
---|---|---|
gradle/wrapper | 6 days ago | |
src/dorkbox/cabParser | 18 hours ago | |
src9 | 18 hours ago | |
.gitignore | 4 years ago | |
LICENSE | 6 days ago | |
LICENSE.Apachev2 | 8 years ago | |
LICENSE.BSD2 | 2 years ago | |
LICENSE.BSD3 | 2 years ago | |
LICENSE.CC0 | 2 years ago | |
LICENSE.MIT | 2 years ago | |
README.md | 18 hours ago | |
build.gradle.kts | 18 hours ago | |
gradlew | 6 days ago | |
gradlew.bat | 6 days ago | |
settings.gradle.kts | 4 years ago |
README.md
CAB PARSER
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
<dependencies>
...
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId>
<version>3.2</version>
</dependency>
</dependencies>
Gradle Info
dependencies {
...
implementation("com.dorkbox:CabParser:3.2")
}
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.