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


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


ClassLoader类getResources()方法

  • getResources() 方法可在java.lang包。
  • getResources() 方法用于标识具有给定资源名称的所有资源。
  • getResources() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • getResources() 方法可能在返回资源时抛出异常。
    IOException:此异常可能会在 I/O 操作期间抛出。

用法:

    Enumeration getResources(String resource_name);

参数:

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

返回值:

这个方法的返回类型是Enumeration,它返回用于扫描资源的 URL 对象的枚举,否则当给定的资源不存在时返回 null。

例:

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

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

public class GetResourcesOfClassLoader {
 public static void main(String args[]) throws Exception {

  // It loads the class 
  Class cl = Class.forName("GetResourcesOfClassLoader");

  // It returns the class loader associated with 
  // the given class
  ClassLoader loader = cl.getClassLoader();

  // Display Loader Class
  System.out.println("Loader Class:");
  System.out.println(loader.getClass());

  System.out.println();

  // It returns the resources associated with this Class
  // GetResourcesOfClassLoader
  Enumeration en = loader.getResources("getProperties().doc");

  // Display Resources
  System.out.println("Class Resources:");

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

输出

Loader Class:
class jdk.internal.loader.ClassLoaders$AppClassLoader

Class Resources:


相关用法


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