Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
Go to file
2019-03-21 12:01:59 +01:00
gradle/wrapper Updated dependencies, fixed kts build script 2019-03-16 00:52:38 +01:00
src/dorkbox/cabParser Updated versions 2018-05-08 23:39:04 +02:00
.gitignore removed invalid configuration 2018-08-18 20:39:32 +02:00
build.gradle.kts Added jar attributes["Automatic-Module-Name"] = Extras.id 2019-03-21 12:01:59 +01:00
gradlew Updated dependencies, fixed kts build script 2019-03-16 00:52:38 +01:00
gradlew.bat Updated dependencies, fixed kts build script 2019-03-16 00:52:38 +01:00
LICENSE Updated dependencies, fixed kts build script 2019-03-16 00:52:38 +01:00
LICENSE.Apachev2 Import of CAB extractor for java 2014-12-18 18:21:38 +01:00
README.md Formatting 2019-03-16 01:06:03 +01:00
settings.gradle.kts Updated dependencies, fixed kts build script 2019-03-16 00:52:38 +01:00

CAB PARSER

Dorkbox Github Gitlab Bitbucket

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 6+

   

Release Notes

This project includes some utility classes that are a small subset of a much larger library. These classes are kept in sync with the main utilities library, so "jar hell" is not an issue, and the latest release will always include the same version of utility files as all of the other projects in the dorkbox repository at that time.

Please note that the utility source code is included in the release and on our Git Server repository.

Maven Info

<dependencies>
    ...
    <dependency>
      <groupId>com.dorkbox</groupId>
      <artifactId>CabParser</artifactId>
      <version>2.15</version>
    </dependency>
</dependencies>

Gradle Info

dependencies {
    ...
    compile "com.dorkbox:CabParser:2.15"
}

Or if you don't want to use Maven, you can access the files directly here:
https://repo1.maven.org/maven2/com/dorkbox/CabParser/

License

This project is © 2012 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references.