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


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