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


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


ClassLoader類getResource()方法

  • getResource() 方法可在java.lang包。
  • getResource() 方法用於在 URL 對象中返回具有給定資源名稱的資源。
  • getResource() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • getResource() 方法返回資源時不拋出異常。

用法:

    public URL getResource(String resource_name);

參數:

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

返回值:

這個方法的返回類型是URL,它返回用於掃描資源的 URL 對象,否則當給定的資源不存在時返回 null。

例:

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

import java.net.*;

public class GetResourceOfClassLoader {
    public static void main(String args[]) throws Exception {
        // It loads the class 
        Class cl = Class.forName("GetResourceOfClassLoader");

        // 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 resource associates with this Class
        // GetParentOfClassLoader
        URL res_url = loader.getResource("E://Programs//getProperties().doc");

        // Display Resource
        System.out.println("Class Resource:");
        System.out.println(res_url);
    }
}

輸出

Loader Class:
class sun.misc.Launcher$AppClassLoader

Class Resource:
file:/E:/Programs/getProperties().doc


相關用法


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