Compression library.
Let's you unzip a zip file to a directory.
Here is the list of declaration for util-compress. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.madgag</groupId> <artifactId>util-compress</artifactId> <version>1.33</version> </dependency>
If you think this Maven repository POM file listing for util-compress is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The util-compress-1.33 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-codec 1.4 The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities. | 248 |
Zip | commons-compress 1.1 Commons Compress defines an API for working with compression and archive formats. These include: bzip2, gzip and ar, cpio, jar, tar, zip. | 6 |
File | commons-io 2.0 Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes. | 7 |
The following packages are defined in the util-compress-1.33.jar
com.madgag.compress
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.madgag</groupId> <artifactId>util-compress</artifactId> <version>1.33</version> <name>Compression library</name> <description>Let's you unzip a zip file to a directory</description> <parent> <groupId>com.madgag</groupId> <artifactId>util-parent</artifactId> <version>1.33</version> </parent> <packaging>jar</packaging> <dependencies> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.0</version> </dependency> </dependencies> </project>