Snippets
Some possibly useful fragments of code etc. Free to anyone, use at your own discretion, no representation, warranty, guarantee or assurance is provided. Find other useful java code examples at Java Developers Almanac.
| DumpProps.java | MemoryStats.java | ShowFonts.java | WhichClass.java | simple-intrusion-handler.txt |
DumpProps.java
public class DumpProps {
public static void main(String[] args) {
System.getProperties().list(System.out);
}
}