All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javatest.lang.PropertiesTest Maven / Gradle / Ivy

package javatest.lang;

import java.util.Enumeration;

public class PropertiesTest {
	public static void main(String[] args) {
		System.out.println("PropertiesTest.main:");
		Enumeration elements = System.getProperties().elements();
		while (elements.hasMoreElements()) {
			Object item = elements.nextElement();
			//System.out.println(item);
		}
	}
}