(String[] args)
| 5 | |
| 6 | public class ShowProperties { |
| 7 | public static void main(String[] args) { |
| 8 | System.getProperties().list(System.out); |
| 9 | System.out.println(System.getProperty("user.name")); |
| 10 | System.out.println( |
| 11 | System.getProperty("java.library.path")); |
| 12 | } |
| 13 | } |
| 14 | /* Output: (First 20 Lines) |
| 15 | -- listing properties -- |