Here you can find the source of isJarFile(File jar)
private static boolean isJarFile(File jar)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { private static boolean isJarFile(File jar) { return jar.getName().endsWith(".jar"); }// w w w . ja va 2s. c o m }