Hello,
Where can I find a list of "key" values for the above method call? In particular I want to find the key for the "TAB character"
Thank you
Printable View
Hello,
Where can I find a list of "key" values for the above method call? In particular I want to find the key for the "TAB character"
Thank you
Code:Properties props = System.getProperties();
Enumeration<?> e = props.propertyNames();
while(e.hasMoreElements()) {
System.out.println(e.nextElement());
}