Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
Go to file
2017-02-18 22:40:22 +01:00
src/dorkbox/cabParser Added comments 2017-02-18 22:40:22 +01:00
.classpath Removed old util jar, updated classpath 2015-02-02 01:01:54 +01:00
.gitignore Import of CAB extractor for java 2014-12-18 18:21:38 +01:00
.project Updated utils, changed name from CabExtractor to CabParser 2014-12-18 20:23:34 +01:00
CabParser.iml Updated Utilities 2017-02-17 16:26:18 +01:00
LICENSE Updated version/readme 2017-02-01 00:46:05 +01:00
LICENSE.Apachev2 Import of CAB extractor for java 2014-12-18 18:21:38 +01:00
README.md Updated version/readme 2017-02-01 00:46:05 +01:00

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

We now release to maven!

This project includes some utility classes, which are an extremely small subset of a much larger library; including only what is necessary for this particular project to function. Additionally this project is kept in sync with the utilities library, so "jar hell" is not an issue, and the latest release will always include the same utility files as all other projects in the dorkbox repository at that time.

Please note that the utility classes have their source code included in the release, and eventually the entire utility library will be provided as a dorkbox repository.

<dependency>
  <groupId>com.dorkbox</groupId>
  <artifactId>CabParser</artifactId>
  <version>2.10</version>
</dependency>

Or if you don't want to use Maven, you can access the files directly here:
https://oss.sonatype.org/content/repositories/releases/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.