Java tutorial
//package com.java2s; public class Main { public static boolean isPicture(String fileName) { if (fileName.endsWith(".png") || fileName.endsWith(".jpg") || fileName.endsWith(".bmp") || fileName.endsWith(".jpeg") || fileName.endsWith(".gif")) { return true; } else { return false; } } }