当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ClassLoader getSystemResource()用法及代码示例


ClassLoader类getSystemResource()方法

  • getSystemResource() 方法可在java.lang包。
  • getSystemResource() 方法用于从搜索位置查找给定资源名称的系统资源以加载类。
  • getSystemResource() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到任何错误。
  • getSystemResource() 方法返回 URL 时不抛出异常。

用法:

    public URL getSystemResource (String resource_name);

参数:

  • String resource_name– 表示资源的名称。

返回值:

这个方法的返回类型是URL,它根据给定的情况返回以下值,

  • 当与给定名称关联的任何系统资源存在时,它返回 URL。
  • 当不存在与给定名称关联的系统资源时,它返回 null。

例:

// Java program to demonstrate the example 
// of URL getSystemResource (String resource_name) method 
// of ClassLoader 

import java.net.*;

public class GetSystemResourceOfClass {
    public static void main(String[] args) throws Exception {
        // Get Class by using forName() method
        Class cl = Class.forName("GetSystemResourceOfClass");

        // Get ClassLoader by using ClassLoader
        ClassLoader loader = cl.getClassLoader();

        // It return URL with the given resource name
        URL address = loader.getSystemResource("E://Programs//getProperties.doc");

        // Display address of the resource
        System.out.print("URL of System Resources:");
        System.out.println(address);
    }
}

输出

URL of System Resources:file:/E:/Programs/getProperties().doc


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java ClassLoader getSystemResource() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。