Java tutorial
//package com.java2s; //License from project: Open Source License public class Main { public static String getFileName(String path) { int idx = path.lastIndexOf("/"); return idx >= 0 ? path.substring(idx + 1) : path; } }