Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static boolean isPictureFormat(String imagePath) { boolean result = false; if (imagePath == null || "".equals(imagePath)) { result = false; } else if (imagePath.endsWith(".png") || imagePath.endsWith(".jpg") || imagePath.endsWith(".jpeg") || imagePath.endsWith(".bmp")) { result = true; } return result; } }