CabParser/README.md

45 lines
1.5 KiB
Markdown
Raw Normal View History

2015-01-29 02:46:49 +01:00
CAB PARSER
===========
2014-12-18 18:21:38 +01:00
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.
2014-12-18 18:21:38 +01:00
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+
2015-11-22 21:19:24 +01:00
2017-02-18 23:59:18 +01:00
 
 
2015-11-22 21:19:24 +01:00
2017-02-18 23:59:18 +01:00
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](https://github.com/dorkbox/Utilities) repository.
2017-02-01 00:46:05 +01:00
2017-02-18 23:59:18 +01:00
Maven Info
---------
2015-11-22 21:19:24 +01:00
```
<dependencies>
...
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId>
2018-05-08 23:39:04 +02:00
<version>2.15</version>
</dependency>
</dependencies>
2015-11-22 21:19:24 +01:00
```
2015-12-22 10:17:05 +01:00
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/
2016-02-10 00:40:05 +01:00
2017-02-18 23:59:18 +01:00
License
---------
2016-04-05 14:47:40 +02:00
This project is © 2012 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references.