Java File Name Get getFileName(String filepath)

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

Description

get File Name

License

Open Source License

Return

the name of the file only

Declaration

public static String getFileName(String filepath) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010-2015 BSI Business Systems Integration AG.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:/*from   w  ww .j av  a2  s . c  o m*/
 *     BSI Business Systems Integration AG - initial API and implementation
 ******************************************************************************/

import java.io.File;

public class Main {
    /**
     * @return the name of the file only
     */
    public static String getFileName(String filepath) {
        if (filepath == null) {
            return null;
        }
        File f = toFile(filepath);
        return f.getName();
    }

    /**
     * @return a valid File representing s with support for both / and \ as path separators.
     */
    public static File toFile(String s) {
        if (s == null) {
            return null;
        } else {
            return new File(s.replace('\\', File.separatorChar).replace('/', File.separatorChar));
        }
    }
}

Related

  1. getFileName(String dir, String name)
  2. getFileName(String f)
  3. getFileName(String fileName)
  4. getFileName(String filePath)
  5. getFileName(String filePath)
  6. getFileName(String filePath)
  7. getFileName(String filePath)
  8. getFilename(String filePath)
  9. getFileName(String filePath)