Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rillis/zip
Zip/Unzip files
https://github.com/rillis/zip
api maven unzip zip
Last synced: about 1 month ago
JSON representation
Zip/Unzip files
- Host: GitHub
- URL: https://github.com/rillis/zip
- Owner: rillis
- License: apache-2.0
- Created: 2020-05-04T22:06:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-05T01:00:57.000Z (over 4 years ago)
- Last Synced: 2023-07-26T22:03:43.081Z (over 1 year ago)
- Topics: api, maven, unzip, zip
- Language: Java
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ZIP
![Maven](https://img.shields.io/maven-central/v/com.github.rillis/zip)
![License](https://img.shields.io/github/license/rillis/zip)```xml
com.github.rillis
zip
1.1.0```
## Docs
**Classes:**
com.github.rillis.Zip**Methods:**
```java
//Zip multiple files/folders. Returns .zip file itself.
Zip.zip(File[] fileToZip, File finalZipFile) : File
throws FileNotFoundException, IOException.//Unzip to destination folder, create folder if it doesn't exists. Returns destFolder.
Zip.unZip(File zipFile, File destFolder) : File
throws FileNotFoundException, IOException.
```**Config:**
```java
//Buffer size
int Zip.BUFFER_SIZE = 4096
```