I need to have a thread which checks for network connection availability on a JAVA desktop app. I got a thread like this
class DataSyncThread extends Thread {
DataSyncThread() {
}
public void run() {
while(true){
try{
System.out.println("Checking for network");
InetAddress addr = InetAddress.getByName(host);
if(addr.isReachable(MIN_PRIORITY)){
syncData();
}
this.sleep(1000000);
}catch(Exception e){}
}
}
}
Now when I call this in the constructer the app never loads. when I look into the console (I trigger the jar to load from it) the thread work, it prints "Checking for network" in the console.
help appreciated