Here you can find the source of getFileExtension(Path path)
Parameter | Description |
---|---|
path | Pfad der Datei |
public static String getFileExtension(Path path)
//package com.java2s; /*/*from w w w . j av a 2s . co m*/ * Copyright (c) 2017 MathBox P-Seminar 16/18. All rights reserved. * This product is licensed under the GNU General Public License v3.0. * See LICENSE file for further information. */ import java.nio.file.Path; public class Main { /** * Herausfiltern einer Dateiendung * * @param path Pfad der Datei * @return Dateiendung (mit Punkt!) oder nichts, wenn es sich um einen Ordner handelt * @since 1.0 */ public static String getFileExtension(Path path) { String fileName = path.getFileName().toString(); //Dateiname mit Dateiendung return fileName.lastIndexOf('.') == -1 ? "" : fileName.substring(fileName.lastIndexOf('.')); } }