當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。