Statistics
| Revision:

root / trunk / install / launcher / izpack-launcher-1.3_linux / src / GetJavaSystemProperties.java @ 6834

History | View | Annotate | Download (283 Bytes)

1
public class GetJavaSystemProperties{
2
        public static void main(String[] args) {
3
                Object value;
4
                for (int i=0;i< args.length;i++) {
5
                        value = System.getProperties().get(args[i]);
6
                        if (value == null) {
7
                                value = "";
8
                        }
9
                        System.out.println(value);
10
                }
11
                System.exit(0);
12
        }
13
}