summaryrefslogtreecommitdiff
path: root/src-2.9/JavaGUI/Utils.java
blob: b10f5471277eff667f1cba0db23da7beac5de196 (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 gfcm = "gfcm";

    /*
     * 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;
    }
}