Here you can find the source of getFileExtension(String fullFilename, Boolean withDot)
public static String getFileExtension(String fullFilename, Boolean withDot)
//package com.java2s; public class Main { public static String getFileExtension(String fullFilename, Boolean withDot) {/*from w ww. j av a2 s .co m*/ String ext = fullFilename.substring(fullFilename.lastIndexOf(".") + (withDot ? 0 : 1), fullFilename.length()); return ext.toUpperCase(); } }