Here you can find the source of isGZipFile(File file)
public static boolean isGZipFile(File file)
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static boolean isGZipFile(File file) { boolean rv = false; if (file != null) { String fileName = file.getName(); if (fileName != null) { if (fileName.toLowerCase().endsWith(".gz")) { rv = true;// w w w . ja v a2s . c o m } } } return rv; } }