Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
        }

    }
}