Here you can find the source of extractFileNameWithoutExt(String filePath)
Parameter | Description |
---|---|
filePath | le nom complet d'un fichier |
public static String extractFileNameWithoutExt(String filePath)
//package com.java2s; //License from project: Open Source License public class Main { /**//from w w w . ja v a 2s. c om * Extrait un nom de fichier y compris son chemin, mais sans son extension. * * @param filePath le nom complet d'un fichier * @return le nom du fichier sans son extension */ public static String extractFileNameWithoutExt(String filePath) { int idx = filePath.lastIndexOf("."); return (idx > -1) ? filePath.substring(0, idx) : filePath; } }