Java File Name Get getFileName(String url, String basePath)

Here you can find the source of getFileName(String url, String basePath)

Description

get File Name

License

Apache License

Declaration

private static String getFileName(String url, String basePath) throws Exception 

Method Source Code

//package com.java2s;
/**/*  www.j a  v  a2 s .c om*/
 *  Copyright 2009, 2011 Welocalize, 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.io.File;

public class Main {
    private static String getFileName(String url, String basePath) throws Exception {
        String[] url1 = url.split("cxedocs");
        String after = url1[1];
        String before = basePath;
        if (before == null) {
            before = new File(".").getAbsolutePath();
        }
        String fileName = before + after;
        return fileName;
    }
}

Related

  1. getFileName(String path)
  2. getFileName(String s)
  3. getFileName(String s)
  4. getFileName(String s)
  5. getFileName(String template, String className, String packageName)
  6. getFileNameAndExt(String s)
  7. getFileNameArrayFromDirectory(String directoryLocation)
  8. getFileNameFilter(final String endsWith)
  9. getFilenameFilter(final String extension)