The getResource() method of java.lang.Class class is used to get the resource with the specified resource of this class. The method returns the specified resource of this class in the form of URL object.
Syntax:
public URL getResource(String resourceName)
Parameter: This method accepts a parameter resourceName which is the resource to get.
Return Value: This method returns the specified resource of this class in the form of URL objects.
Exception This method throws:
- NullPointerException if name is null
Below programs demonstrate the getResource() method.
Example 1:
// Java program to demonstrate // getResource() method import java.util.*; public class Test { public int obj = 10 ; public static void main(String[] args) throws ClassNotFoundException { // returns the Class object for this class Class myClass = Class.forName( "Test" ); System.out.println( "Class represented by myClass: " + myClass.toString()); String resourceName = "obj" ; // Get the resource of myClass // using getResource() method System.out.println( resourceName + " resource of myClass: " + myClass.getResource(resourceName)); } } |
Class represented by myClass: class Test obj resource of myClass: null
Example 2:
// Java program to demonstrate // getResource() method import java.util.*; class Main { private Object obj; public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException { // returns the Class object for this class Class myClass = Class.forName( "Main" ); System.out.println( "Class represented by myClass: " + myClass.toString()); String resourceName = "obj" ; try { // Get the resource of myClass // using getResource() method System.out.println( resourceName + " resource of myClass: " + myClass.getResource(resourceName)); } catch (Exception e) { System.out.println(e); } } } |
Class represented by myClass: class Main obj resource of myClass: null
Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getResource-java.lang.String-