Here you can find the source of getLastPathComponent(File file)
public static String getLastPathComponent(File file)
//package com.java2s; import java.io.File; public class Main { public static String getLastPathComponent(File file) { String[] segments = file.getAbsolutePath().split("/"); String lastPathComponent = segments[segments.length - 1]; return lastPathComponent; }/*from w w w.j a v a 2 s .c o m*/ }