parent
cb95220f5a
commit
081bf758dc
@ -0,0 +1,49 @@
|
|||||||
|
CAB PARSER
|
||||||
|
===========
|
||||||
|
|
||||||
|
###### [![Dorkbox](https://badge.dorkbox.com/dorkbox.svg "Dorkbox")](https://git.dorkbox.com/dorkbox/CabParser) [![Github](https://badge.dorkbox.com/github.svg "Github")](https://github.com/dorkbox/CabParser) [![Gitlab](https://badge.dorkbox.com/gitlab.svg "Gitlab")](https://gitlab.com/dorkbox/CabParser) [![Bitbucket](https://badge.dorkbox.com/bitbucket.svg "Bitbucket")](https://bitbucket.org/dorkbox/CabParser)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
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+
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Maven Info
|
||||||
|
---------
|
||||||
|
```
|
||||||
|
<dependencies>
|
||||||
|
...
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.dorkbox</groupId>
|
||||||
|
<artifactId>CabParser</artifactId>
|
||||||
|
<version>2.15</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
```
|
||||||
|
|
||||||
|
Gradle Info
|
||||||
|
---------
|
||||||
|
````
|
||||||
|
dependencies {
|
||||||
|
...
|
||||||
|
compile "com.dorkbox:CabParser:2.15"
|
||||||
|
}
|
||||||
|
````
|
||||||
|
|
||||||
|
Or if you don't want to use Maven, you can access the files directly here:
|
||||||
|
https://repo1.maven.org/maven2/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.
|
Loading…
Reference in new issue