Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isZip(String s) {
if (s.contains(".")) {
String[] r = s.split("\\.");
String ext = r[r.length - 1];
if (ext.toUpperCase().equals("ZIP")) {
return true;
}
}
return false;
}
}