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


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