summaryrefslogtreecommitdiff
path: root/src/JavaGUI/Utils.java
blob: f7c6f5b9317e30d3d08365cc19d79efef9c03dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

import java.io.File;

public class Utils {

    public final static String gf = "gf";
    public final static String gfm = "gfm";

    /*
     * Get the extension of a file.
     */
    public static String getExtension(File f) {
        String ext = null;
        String s = f.getName();
        int i = s.lastIndexOf('.');

        if (i > 0 &&  i < s.length() - 1) {
            ext = s.substring(i+1).toLowerCase();
        }
        return ext;
    }
}