Java Resource Path Get getResourcePath(String path)

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

Description

get Resource Path

License

Apache License

Declaration

public static String getResourcePath(String path) 

Method Source Code

//package com.java2s;
/*/* ww  w  . j a  v a 2s .  c o m*/
   Copyright 2014 base2Services
    
   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.net.URL;

public class Main {
    public static String getResourcePath(String path) {
        URL dir_url = ClassLoader.getSystemResource(path);
        return dir_url.getFile();
    }
}

Related

  1. getResourcePath(final Class bundleClazz, final String pathToFile)
  2. getResourcePath(Object object, String resource)
  3. getResourcePath(String filename)
  4. getResourcePath(String fileName)
  5. getResourcePath(String name)
  6. getResourcePath(String resource)
  7. getResourcePath(String resource)
  8. getResources(ClassLoader cl, String resourcePath)
  9. getResources(String path, ClassLoader loader)