Hi, Can someone please help with the below issue. I cannot extract(unzip) the zip file content using the below code: public class ZipTester { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try { ZipProcessor.zipFileExtractor("D:\\mbmkh\\Moieen_work\\Zip Extraction\\source", "D:\\mbmkh\\Moieen_work\\Zip Extraction\\destination", "DURSME_1.xml.zip"); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } } ...