/* Displays the system properties. */ public class ShowProperties { public static void main(String[] args) { System.getProperties().list(System.out); } }