Thursday, September 4, 2025
HomeLanguagesJavaClass getResource() method in Java with Examples

Class getResource() method in Java with Examples

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-

RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS