Java Path File Extention nio getFileNameWithoutExtension(String filePath)

Here you can find the source of getFileNameWithoutExtension(String filePath)

Description

get File Name Without Extension

License

Apache License

Declaration

static public String getFileNameWithoutExtension(String filePath) 

Method Source Code

//package com.java2s;
/*//from   w  w w.  j  a v a  2s . c  om
 * Copyright (C) 2014 Dell, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
    static public String getFileNameWithoutExtension(String filePath) {
        String name = getFileName(filePath);
        return name.replaceFirst("[.][^.]+$", "");
    }

    static public String getFileName(String filePath) {
        Path path = Paths.get(filePath);
        return path.getFileName().toString();
    }
}

Related

  1. getFileExtension(Path path)
  2. getFileNameNoExtensionFromPath(String modulePath)
  3. getFilenameWithoutExtension(Path file)
  4. getFileNameWithoutExtension(Path path)
  5. getFileNameWithoutExtension(Path path)
  6. getFilesList(Path directory, Set extensions)
  7. getFullNameWithoutExtension(Path f)
  8. getLeafName(Path path, boolean includeExtension)
  9. getListOfFilesByExtension(Path directoryPath, Set extensions)