Last active
November 3, 2016 19:33
-
-
Save ryanwoodsmall/0562fa2427a393d96bbdfce199e048a2 to your computer and use it in GitHub Desktop.
dump java system properites
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* single command version: | |
* jrunscript -e 'java.lang.System.getProperties().list(java.lang.System.out);' | |
*/ | |
import java.util.Properties; | |
public class jsysprop { | |
public static void main(String[] args) { | |
System.getProperties().list(System.out); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment