Friday, October 24, 2025
HomeLanguagesJavaProperties list(PrintStream) method in Java with Examples

Properties list(PrintStream) method in Java with Examples

The list(PrintStream) method of Properties class is used to print this Properties list out to the specified output stream, passed as the parameter. This method can be used for debugging purpose as it can help to see the Properties elements on the stream.0

Syntax:

public void list(PrintStream out)

Parameters: This method accepts a parameters PrintStream out which is the output stream on which the Properties elements are to be printed.

Returns: This method just prints the elements and do not return anything.

Below programs show the implementation of int list(PrintStream) method.

Program 1:




// Java code to show the implementation of
// list(PrintStream) 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());
  
        System.out.println("listing out the Properties: ");
        properties.list(System.out);
    }
}


Output:

Properties: {Book=500, Mobile=5000, Pen=10, Clothes=400}
listing out the Properties: 
-- listing properties --
Book=500
Pen=10
Mobile=5000
Clothes=400

Program 2:




// Java program to demonstrate
// list(PrintStream) 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();
  
        // Inserting elements into the properties
        properties.put("Geeks", "10");
        properties.put("4", "15");
        properties.put("Geeks", "20");
        properties.put("Welcomes", "25");
        properties.put("You", "30");
  
        // Print Properties details
        System.out.println("Properties: "
                           + properties.toString());
  
        System.out.println("listing out the Properties: ");
        properties.list(System.out);
    }
}


Output:

Properties: {You=30, Welcomes=25, 4=15, Geeks=20}
listing out the Properties: 
-- listing properties --
You=30
4=15
Welcomes=25
Geeks=20

References: https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#list-java.io.PrintStream-

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS