Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
Go to file
nathan 2580e9b15d Updated versions 2018-05-08 23:39:04 +02:00
src/dorkbox/cabParser Updated versions 2018-05-08 23:39:04 +02:00
.gitignore Import of CAB extractor for java 2014-12-18 18:21:38 +01:00
CabParser.iml updated JDK compile required version 2018-02-19 15:26:53 +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 versions 2018-05-08 23:39:04 +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.15</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.