Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
/*
* Created on 21.10.2004
*/
package de.tutorials;
/**
* @author Darimont
*
*/
public class Test27 {
public static void main(String[] args) {
for(int i = 0; i< 100; i++){
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(i);
}
}
}
public void doGet(HttpServletRequest request, HttpServletResponse ....
boolean run = true; int i = 0;
while(run){
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
e.printStackTrace();
}
if(checkFileExists())
// mach was
if(i > 100)
run = false;
}