Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static boolean checkEndsWithInStringArray(String checkItsEnd, String[] fileEndings) {
for (String aEnd : fileEndings) {
if (checkItsEnd.endsWith(aEnd))
return true;
}
return false;
}
}