1 16 17 package org.apache.commons.betwixt; 18 19 import org.apache.commons.betwixt.io.BeanWriter; 20 21 22 27 public class SystemProperties { 28 29 public static void main(String [] args) throws Exception { 30 Object bean = System.getProperties(); 31 32 BeanWriter writer = new BeanWriter(); 33 writer.enablePrettyPrint(); 34 writer.write( bean ); 35 } 36 } 37 38 | Popular Tags |