How to create a temporary file in Java
In Java, we can use the Java NIO Files.createTempFile() methods to create a temporary file in the default temporary-file directory. The default temporary file folder is vary on operating system:…
How to decompress serialized object from a Gzip file
In last section, you learn about how to compress a serialized object into a file, now you learn how to decompress it from a Gzip file. The idea is very…
How to compress serialized object into file
In last section, you learn about how to write or serialized an object into a file. In this example , you can do more than just serialized it , you…
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…
Java – Compress a file in Gzip format
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…
How to create tar.gz in Java
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…
How to unzip a zip file in Java
This article shows how to use ZipInputStream and zip4j library to unzip a zip file in Java. To unzip a file manually, remember to add validation for the zip slip…
How to create Zip file in Java
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 –…
How to read and write Java object to a file
Java object Serialization is an API provided by Java Library stack as a means to serialize Java objects. Serialization is a process to convert objects into a writable byte stream.…
Convert object to byte[] in Java
This article shows how to convert an object to byte or byte array and vice versa in Java. The example show how to use ByteArrayOutputStream and ObjectOutputStream to convert an…