Java Properties.list(PrintStream out)

Syntax

Properties.list(PrintStream out) has the following syntax.

public void list(PrintStream out)

Example

In the following code shows how to use Properties.list(PrintStream out) method.


/*  w  w w . j  a  v  a  2  s.  c  o m*/


import java.util.Properties;

public class Main {

  public static void main(String[] args) throws Exception {
    Properties prop = new Properties();


    prop.put("Chapter Count", "200");
    prop.put("Tutorial Count", "150");
    prop.put("tutorial", "java2s.com");
    prop.put("Runnable", "true");

    // print the list with System.out
    prop.list(System.out);

  }
}

The code above generates the following result.