Open In App

Properties list(PrintStream) method in Java with Examples

Last Updated : 23 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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-



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

Similar Reads