Here you can find the source of getFileName(String path)
public static String getFileName(String path)
//package com.java2s; public class Main { public static String getFileName(String path) { return path.substring(path.lastIndexOf("/") + 1); }/* w w w. j a v a 2s. c om*/ }