Here you can find the source of getFileName(String path)
public static String getFileName(String path)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { /**/* ww w . j a v a 2 s . co m*/ * Dado un nombre de archivo completo, devuelve el nombre sin la extension */ public static String getFileName(String path) { String fileName = null; String separator = File.separator; int pos = path.lastIndexOf(separator); int pos2 = path.lastIndexOf("."); if (pos2 > -1) fileName = path.substring(pos + 1, pos2); else fileName = path.substring(pos + 1); return fileName; } }