what is the difference between reading system properties in this different ways
RuntimeMXBean RuntimemxBean = ManagementFactory.getRuntimeMXBean();
Object value = RuntimemxBean.getSystemProperties();
System.out.println(value);
AND
Properties systemProperties = System.getProperties();
systemProperties.list(System.out);
