MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

objects/ShowProperties.java:7–12  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

5
6public 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 --

Callers

nothing calls this directly

Calls 1

listMethod · 0.80

Tested by

no test coverage detected