VOOZH about

URL: https://www.geeksforgeeks.org/java/properties-listprintwriter-method-in-java-with-examples/

⇱ Properties list(PrintWriter) method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Properties list(PrintWriter) method in Java with Examples

Last Updated : 11 Jul, 2025
The list(PrintWriter) 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(PrintWriter out)
Parameters: This method accepts a parameters PrintWriter 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. Exception: This method throws ClassCastException if any key in this property list is not a string. Below programs show the implementation of int list(PrintWriter) method. Program 1:
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:
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.PrintWriter-
Comment