Here you can find the source of isZip(File file)
private static boolean isZip(File file)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { private static boolean isZip(File file) { return existsWithExtension(file, ".zip"); }/*from ww w .ja v a 2s. c om*/ private static boolean existsWithExtension(File file, String extension) { return file.isFile() && file.getName().toLowerCase().endsWith(extension); } }