Created
March 7, 2016 01:10
-
-
Save simonexmachina/7c7740c39b84212f2b96 to your computer and use it in GitHub Desktop.
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
import java.util.Map; | |
public class Test { | |
public static void main (String[] args) { | |
Map<String, String> env = System.getenv(); | |
String envName = "ANDROID_HOME"; | |
System.out.format("%s=%s%n", envName, env.get(envName)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment