import java.util.Arrays;
public class SystemProperties {
public static void main(String [] args) {
String [] keys = System.getProperties().keySet()
.toArray(new String [] {});
Arrays.sort(keys);
for (String key: keys) {
String value = System.getProperty(key);
System.out.println(key + ": " + value);
}
}
}
Tuesday, March 10, 2009
Java System properties
Subscribe to:
Post Comments (Atom)
Followers
About Me
Blog Archive
-
▼
2009
(12)
-
▼
March
(9)
- Hibernate optimistic locking
- Hibernate annotation default column value
- Configure Interactive mode for QuickBooks Web Conn...
- Terminate Java process
- Hibernate bytecode instrumentation (enhance persis...
- Hibernate ddl (database schema) generation with he...
- Java System properties
- Maven compile sources version 1.5
- Maven artifact sources
-
▼
March
(9)
No comments:
Post a Comment