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


Java ClassLoader findResources()用法及代碼示例


ClassLoader類findResources()方法

  • findResources() 方法可在java.lang包。
  • findResources() 方法用於在 URL 對象的枚舉中查找具有給定資源名稱的所有資源。
  • findResources() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • findResources() 方法可能在查找資源時拋出異常。
    IOException:此異常可能會在 I/O 錯誤期間拋出。

用法:

    protected Enumeration findResources(String resource_name);

參數:

  • String resource_name– 表示資源的名稱。

返回值:

這個方法的返回類型是Enumeration,它返回給定資源的 URL 對象枚舉。

例:

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

import java.util.*;
import java.io.*;

class FindResources extends ClassLoader {
    void findResources() {
        try {
            // It checks whether the given resources is found
            // or not by using the findResources()
            Enumeration en = super.findResources("getProperties().doc");

            // If en not null that means en found
            // then don't need to load again
            if (en != null)
                System.out.println("Resources Found:" + en.toString());
            else
                System.out.println("Resources Not Found!!!");
        } catch (IOException ex) {
            System.out.println(ex.toString());
        }
    }
}

public class Main {
    public static void main(String[] args) throws Exception {
        // Creating an instance of FindResources
        FindResources fr = new FindResources();
        fr.findResources();
    }
}

輸出

Resources Found:[email protected]


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java ClassLoader findResources() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。