Zip

Simply library to zip and unzip files.

Лицензия

Лицензия

Группа

Группа

com.github.rillis
Идентификатор

Идентификатор

zip
Последняя версия

Последняя версия

1.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

Zip
Simply library to zip and unzip files.
Ссылка на сайт

Ссылка на сайт

https://github.com/rillis/zip/
Система контроля версий

Система контроля версий

http://github.com/rillis/zip/tree/master

Скачать zip

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.rillis/zip/ -->
<dependency>
    <groupId>com.github.rillis</groupId>
    <artifactId>zip</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.rillis/zip/
implementation 'com.github.rillis:zip:1.1.0'
// https://jarcasting.com/artifacts/com.github.rillis/zip/
implementation ("com.github.rillis:zip:1.1.0")
'com.github.rillis:zip:jar:1.1.0'
<dependency org="com.github.rillis" name="zip" rev="1.1.0">
  <artifact name="zip" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.rillis', module='zip', version='1.1.0')
)
libraryDependencies += "com.github.rillis" % "zip" % "1.1.0"
[com.github.rillis/zip "1.1.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

ZIP

Maven License

<dependency>
  <groupId>com.github.rillis</groupId>
  <artifactId>zip</artifactId>
  <version>1.1.0</version>
</dependency>

Docs

Classes:
com.github.rillis.Zip

Methods:

//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:

//Buffer size
int Zip.BUFFER_SIZE = 4096

Версии библиотеки

Версия
1.1.0
1.0.0