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


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


ClassLoader類findResource()方法

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

用法:

    protected URL findResource(String resource_name);

參數:

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

返回值:

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

例:

// Java program to demonstrate the example 
// of URL findResource(String resource_name)
// method of ClassLoader 

import java.net.*;

class FindResource extends ClassLoader {
    void findResource() {
        // It checks whether the given resource is found
        // or not by using the findResource()
        URL res_url = super.findResource("getRproperties().doc");

        // If res_url not null that means res_url is found
        // then don't need to load again
        if (res_url != null)
            System.out.println("Resource Found:" + res_url);
        else
            System.out.println("Resource Not Found!!!");
    }
}

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

輸出

Resource Not Found!!!


相關用法


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