Here you can find the source of isZipFile(File file)
Parameter | Description |
---|---|
file | a parameter |
private static boolean isZipFile(File file)
//package com.java2s; import java.io.File; public class Main { /**/*from w w w. j a v a 2 s .c om*/ * suffix signifying a zip file */ private static final String zip_suffix = ".zip"; /** * Returns true if the input file is a zip file. Determination is made by examining the file * suffix. * * @param file * @return true if the file is a zip file, false otherwise */ private static boolean isZipFile(File file) { return hasCaseInsensitiveSuffix(file, zip_suffix); } /** * Matches the file suffix to the input file in a case-insensitive manner * * @param file * @param fileSuffix * @return true if the input file has the specified file suffix regardless of upper/lower case */ private static boolean hasCaseInsensitiveSuffix(File file, String fileSuffix) { return file.getName().endsWith(fileSuffix.toLowerCase()) || file.getName().endsWith(fileSuffix.toUpperCase()); } }