Saturday, November 22, 2025
HomeLanguagesJavaProperties isEmpty() method in Java with Examples

Properties isEmpty() method in Java with Examples

The isEmpty() method of Properties class is used to check if this Properties object is empty or not.

Syntax:

public boolean isEmpty()

Parameters: This method accepts no parameters

Returns: This method returns a boolean value stating if this Properties object is empty or not.

Below programs show the implementation of int isEmpty() method.

Program 1:




// Java code to show the implementation of
// isEmpty method
  
import java.util.*;
public class GfG {
  
    // Main method
    public static void main(String[] args)
    {
  
        // Create a properties and add some values
        Properties properties = new Properties();
        properties.put("Pen", 10);
        properties.put("Book", 500);
        properties.put("Clothes", 400);
        properties.put("Mobile", 5000);
  
        // Print Properties details
        System.out.println("Properties: "
                           + properties.toString());
  
        // Checking if the Properties is empty
        System.out.println("Is Properties empty: "
                           + properties.isEmpty());
    }
}


Output:

Properties: {Book=500, Mobile=5000, Pen=10, Clothes=400}
Is Properties empty: false

Program 2:




// Java program to demonstrate
// isEmpty() method.
  
import java.util.*;
  
public class GFG {
  
    // Main method
    public static void main(String[] args)
    {
  
        // Create a properties and add some values
        Properties properties = new Properties();
  
        // Print Properties details
        System.out.println("Current Properties: "
                           + properties.toString());
  
        // Checking if the Properties is empty
        System.out.println("Is Properties empty: "
                           + properties.isEmpty());
    }
}


Output:

Current Properties: {}
Is Properties empty: true

References: https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#isEmpty–

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6850 POSTS0 COMMENTS