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.
for (java.util.Enumeration e = System.getProperties().propertyNames() ; e.hasMoreElements() ;) {
String n = (String)e.nextElement();
System.out.println(n +":" +System.getProperty(n));
}
String jrevm = System.getProperty("java.vm.version");