Java Resource Path Get getResource(String path)

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

Description

get Resource

License

Apache License

Declaration

public static URL getResource(String path) 

Method Source Code

//package com.java2s;
/*//from  w  w  w.  j ava2s  .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.net.URL;
import java.net.URLClassLoader;

public class Main {
    public static String PREFIX = "";
    private static URLClassLoader classLoader;

    public static URL getResource(String path) {
        return classLoader.getResource(PREFIX + path);
    }
}

Related

  1. getPluginResource(Bundle bundle, String resourcePath)
  2. getRelativeResource(Class clazz, String relativePath)
  3. getResource(Class cl, String path)
  4. getResource(final Class baseClass, final String path)
  5. getResource(final String path)
  6. getResource(String path)
  7. getResource(String path)
  8. getResource(String relativePath)
  9. getResource(String resourcePath)