当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。