Skip to content

Instantly share code, notes, and snippets.

@pcdavid
Created February 26, 2021 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcdavid/c39179eaacb8e7d3b40332d87664c227 to your computer and use it in GitHub Desktop.
Save pcdavid/c39179eaacb8e7d3b40332d87664c227 to your computer and use it in GitHub Desktop.
public class Props {
public static void main(String[] args) {
System.getProperties().forEach((k, v) -> System.out.println(k + ": " + v));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment