Here you can find the source of suffix(String fname)
public static String suffix(String fname)
//package com.java2s; //License from project: Open Source License public class Main { public static String suffix(String fname) { int index = fname.lastIndexOf('.'); if (index < 0) { return ""; }//from w w w. ja v a2 s . c o m return fname.substring(index + 1).toLowerCase(); } }