Here you can find the source of isZipFile(File file)
public static boolean isZipFile(File file)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static boolean isZipFile(File file) { return file != null && isZipFile(file.getAbsolutePath()); }/*w w w.j a v a2s.co m*/ public static boolean isZipFile(String filename) { return filename.endsWith(".zip"); } }