Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
Go to file
nathan 317da5f40f Changed package name. The standard package naming
convention with CamelCase is consistent across projects.
2017-09-22 09:25:27 +02:00
src/dorkbox/cabParser Changed package name. The standard package naming 2017-09-22 09:25:27 +02: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 Reverted change to use Version object. 2017-09-14 22:33:56 +02:00

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 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 GitHub repository.

Maven Info

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

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.