Java provides “java.util.zip” library to compress files/folder in zip format. Steps to follow – 1. Take folder/files path as input. 2. Create a ZipOutputStream 3. Check if folder is empty or not. If the folder is empty, we will simply add the empty folder in zip, else we will read all the files and will add every files to zip. ... Read More »