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.
String surl = "[URL unfurl="true"]http://home.arcor.de/hirnstrom/index.html";[/URL]
URL url = new URL (surl);
BufferedReader br = new BufferedReader (new InputStreamReader (url.openConnection ().getInputStream ()));
String line = "";
do
{
line = br.readLine ();
if (line != null) System.out.println (line);
}while (line != null);