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


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


ClassLoader类getSystemResources()方法

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

用法:

    public static Enumeration getSystemResources (String resource_name);

参数:

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

返回值:

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

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

例:

// Java program to demonstrate the example 
// of Enumeration getSystemResources (String resource_name) 
// of ClassLoader method

import java.net.*;
import java.util.*;

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

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

        // It return Enumeration of URL objects with the given //resource name
        Enumeration en = loader.getSystemResources("getProperties().doc");

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

        while (en.hasMoreElements())
            System.out.println(en.nextElement());
    }
}

输出

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


相关用法


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