Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * Function to check if the present url or string has image formate like JPG , PNG, JPEG
     * @param imageUrl string 
     * @return true if the image format is present else return false.
     */
    public static boolean isUrlHasImageFormat(String imageUrl) {
        return imageUrl != null && (imageUrl.toLowerCase().contains("png") || imageUrl.toLowerCase().contains("jpg")
                || imageUrl.toLowerCase().contains("jpeg"));
    }
}