Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static boolean isImageUri(String s1) {
        s1 = s1.toLowerCase();
        return s1.endsWith(".png") || s1.endsWith(".jpg") || s1.endsWith(".jpeg") || s1.endsWith(".bmp")
                || s1.endsWith(".gif");
    }
}