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.
You want to interrupt a class that extends Thread or you want to kill the process spawned by Runtime.exec() ?
void interrupt() {
keepRunning = false;
}
void run() {
while (keepRunning) {
doStuff();
}
}
Process p=Runtime.exec(runExternalProcess);
p.waitFor();
void interrupt() {
keepRunning = false;
}
void run() {
while (keepRunning) {
Process p=Runtime.exec(runExternalProcess);
p.waitFor();
}
}
Process p = ...
try {
Thread.sleep(20000);
} catch (Exception e) {
}