Here you can find the source of FileNamePathExtension(String filename)
public static String FileNamePathExtension(String filename)
//package com.java2s; public class Main { public static String FileNamePathExtension(String filename) { int index = filename.lastIndexOf("."); if (index != -1) { return filename.substring(index, filename.length()); } else {/*from w w w . j a va 2 s . c o m*/ return ""; } } }