File: PrintProperty.java

package info (click to toggle)
jblas 1.2.3-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,120 kB
  • ctags: 2,710
  • sloc: java: 12,202; ansic: 4,620; ruby: 2,339; xml: 348; makefile: 159; sh: 22
file content (7 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
public class PrintProperty {
    public static void main(String[] args) {
	for (String arg: args) {
	    System.out.println(System.getProperty(arg));
	}
    }
}