Skip to content

Instantly share code, notes, and snippets.

@simonexmachina
Created March 7, 2016 01:10
Show Gist options
  • Save simonexmachina/7c7740c39b84212f2b96 to your computer and use it in GitHub Desktop.
Save simonexmachina/7c7740c39b84212f2b96 to your computer and use it in GitHub Desktop.
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