Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getFileSuffix(String path) {
String[] arg = path.split("\\.");
if (arg.length > 1) {
return (arg[arg.length - 1]);
} else {
return null;
}
}
}