Java File Name Get getFileName(String path)

Here you can find the source of getFileName(String path)

Description

Dado un nombre de archivo completo, devuelve el nombre sin la extension

License

Open Source License

Declaration

public static String getFileName(String path) 

Method Source Code

//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;
    }
}

Related

  1. getFileName(String path)
  2. getFilename(String path)
  3. getFileName(String path)
  4. getFileName(String path)
  5. getFileName(String path)
  6. getFilename(String path)
  7. getFileName(String s)
  8. getFileName(String s)
  9. getFileName(String s)