Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String getFileExt(String filePath) {
        int pos = filePath.lastIndexOf(".");
        if (pos == -1)
            return "";
        return filePath.substring(pos + 1).toLowerCase();
    }
}