Open In App

Class getResource() method in Java with Examples

Last Updated : 27 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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));
    }
}


Output:

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);
        }
    }
}


Output:

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-



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads