CabParser/README.md

47 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2015-01-29 02:46:49 +01:00
CAB PARSER
===========
2014-12-18 18:21:38 +01:00
2023-01-24 18:38:09 +01:00
###### [![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)
2019-03-16 00:55:25 +01:00
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
2021-04-09 16:02:04 +02:00
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 8+
2015-11-22 21:19:24 +01:00
2019-03-16 01:01: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
Maven Info
---------
2015-11-22 21:19:24 +01:00
```
<dependencies>
...
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId>
2023-08-21 01:47:32 +02:00
<version>3.4</version>
</dependency>
</dependencies>
2015-11-22 21:19:24 +01:00
```
2018-08-18 17:14:41 +02:00
Gradle Info
---------
2021-04-09 16:02:04 +02:00
```
2018-08-18 17:14:41 +02:00
dependencies {
...
2023-08-21 01:47:32 +02:00
implementation("com.dorkbox:CabParser:3.4")
2018-08-18 17:14:41 +02:00
}
2021-04-09 16:02:04 +02:00
```
2016-02-10 00:40:05 +01:00
2017-02-18 23:59:18 +01:00
License
---------
2023-01-24 18:38:09 +01:00
This project is © 2023 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further
2021-04-09 16:02:04 +02:00
references.