Here you can find the source of isZipFile(File file)
public static boolean isZipFile(File file)
//package com.java2s; import java.io.File; public class Main { public static final String ZIP_FILE = "zip"; public static boolean isZipFile(File file) { if (file != null && file.getName() != null && file.getName().toLowerCase().endsWith(ZIP_FILE.toLowerCase())) return true; else/*from www. j av a 2 s . c o m*/ return false; } }