Here you can find the source of pathExtension(String fileName)
public static String pathExtension(String fileName)
//package com.java2s; public class Main { public static String pathExtension(String fileName) { int point = fileName.lastIndexOf('.'); int length = fileName.length(); if (point == -1 || point == length - 1) { return ""; } else {/*from ww w .j av a 2s . c o m*/ return fileName.substring(point + 1, length); } } }