Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
Go to file
2015-11-22 21:19:24 +01:00
src/dorkbox/util/cab Code polish, cleanup 2015-11-22 21:17:11 +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 project info 2015-08-23 02:41:08 +02:00
LICENSE update license 2014-12-27 11:36:53 +01:00
LICENSE.Apachev2 Import of CAB extractor for java 2014-12-18 18:21:38 +01:00
README.md updated readme to include maven info 2015-11-22 21:19:24 +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!

There are two dependencies because we did not want to bake-in a hard dependency into the POM file. We leave this decision to you.

The included utilities are an extremely small subset of a much larger library, including only what is necessary for the CabParser to function. The larger version of the library is not yet available but will be as soon as it is converted to maven use.

This project is kept in sync with the larger library and can be substituted as necessary. Please note that the larger library is not initially listed here as it has many dependencies that are not necessary for this project.

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

<dependency>
  <groupId>com.dorkbox</groupId>
  <artifactId>CabParser-Dorkbox-Util</artifactId>
  <version>1.1</version>
</dependency>

And You can access the files directly here: https://oss.sonatype.org/content/repositories/releases/com/dorkbox/CabParser/ https://oss.sonatype.org/content/repositories/releases/com/dorkbox/CabParser-Dorkbox-Util/