Java Resource Load getResourceNameFromFileName(final String pFileName)

Here you can find the source of getResourceNameFromFileName(final String pFileName)

Description

a/b/c.java -> a/b/c.java a\b\c.java -> a/b/c.java

License

Apache License

Parameter

Parameter Description
pFileName a parameter

Return

the converted name

Declaration

public static String getResourceNameFromFileName(final String pFileName) 

Method Source Code


//package com.java2s;
/*//from   w w  w  .j  a  v a2s.c  o  m
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 {
    /**
     * a/b/c.java -> a/b/c.java
     * a\b\c.java -> a/b/c.java
     * @param pFileName
     * @return the converted name
     */
    public static String getResourceNameFromFileName(final String pFileName) {
        if ('/' == File.separatorChar) {
            return pFileName;
        }

        return pFileName.replace(File.separatorChar, '/');
    }
}

Related

  1. getResourceFile(String resourceName)
  2. getResourceFromJar(File fromFile, String insideFile)
  3. getResourceInDirPackage(String packageName, String packagePath, final boolean recursive, List classes)
  4. getResourceList(File fdir, String extn)
  5. getResourceListing(URL pathUrl, String prefix, String suffix)
  6. getResourceNames(File dir)
  7. getResourceNames(String resName)
  8. getResourceNamesFromDir(File dir, String extension)
  9. getResourcePath()