Java – Decompress a Gzip file
In previous article, we show how to compress a file in Gzip format. This article shows how to decompress a Gzip file. We copy the GZIPInputStream into a FileOutputStream to…
Favourite tutorials for developers
In previous article, we show how to compress a file in Gzip format. This article shows how to decompress a Gzip file. We copy the GZIPInputStream into a FileOutputStream to…
This article shows how to use Java to compress a file in Gzip format. GZip is a standard file compression tool on Unix or Linux system, and generally has the…
The tar is for collecting files into one archive file, aka tarball, and generally has the suffix .tar. The Gzip is for compress files to save space and generally has…
This article shows a few examples to zip a single file and a whole directory (including sub-files and subdirectories): (1) Zip a file – java.util.zip, (2) Zip a file –…