Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
 
 
Go to file
Robinson 95f52cba8e
updated module name
2023-01-29 14:46:08 +01:00
gradle/wrapper updated gradle 2023-01-24 18:27:28 +01:00
src/dorkbox/cabParser Added to updates, moved version into reasonable location, updated version 2023-01-24 18:37:05 +01:00
src9 updated module name 2023-01-29 14:46:08 +01:00
.gitignore updated .gitignore 2019-05-13 15:16:25 +02:00
LICENSE updated build deps and license 2023-01-24 18:31:19 +01:00
LICENSE.Apachev2 Import of CAB extractor for java 2014-12-18 18:21:38 +01:00
LICENSE.BSD2 Updated license, updated version 2021-04-09 16:03:49 +02:00
LICENSE.BSD3 Updated license, updated version 2021-04-09 16:03:49 +02:00
LICENSE.CC0 Updated license, updated version 2021-04-09 16:03:49 +02:00
LICENSE.MIT Updated license, updated version 2021-04-09 16:03:49 +02:00
README.md Updated version and badges 2023-01-24 18:38:09 +01:00
build.gradle.kts Added to updates, moved version into reasonable location, updated version 2023-01-24 18:37:05 +01:00
gradlew updated gradle 2023-01-24 18:27:28 +01:00
gradlew.bat updated gradle 2023-01-24 18:27:28 +01:00
settings.gradle.kts Updated dependencies, fixed kts build script 2019-03-16 00:52:38 +01:00

README.md

CAB PARSER

Dorkbox Github Gitlab

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.1</version>
    </dependency>
</dependencies>

Gradle Info

dependencies {
    ...
    implementation("com.dorkbox:CabParser:3.1")
}

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.