Here you can find the source of extractFileExt(String filePath)
Parameter | Description |
---|---|
filePath | le nom complet d'un fichier |
public static String extractFileExt(String filePath)
//package com.java2s; //License from project: Open Source License public class Main { /**//www. ja v a 2 s . c o m * Extrait l'extension du nom (ex: .xls) comprise dans un nom de fichier. * * @param filePath le nom complet d'un fichier * @return l'extension comprise dans le nom du fichier (ou "") */ public static String extractFileExt(String filePath) { int idx = filePath.lastIndexOf("."); return (idx > -1) ? filePath.substring(idx) : ""; } }