Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
import java.io.*;
public class Test {
public static void main(String args[]) throws Exception {
Process p = Runtime.getRuntime().exec("env");
BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while ((line = br.readLine()) != null) {
System.out.println(line);
}
}
}
Map <String, String> m = System.getenv ();