私は次のコードを書きました。制御が1になったときに、無限ループを停止する必要があります。それ以外の場合は、定期的にSQLデータベースを更新し続けます。ある種の例外が原因でスレッドが終了します。私はそれを理解することができません。誰でもそれを手伝ってくれる?
public void run()
{
while(true)
{
System.out.println("I am working t asfbjakhbfjabf");
synchronized(lock)
{
if(control==1)
{
return;
}
}
try
{
Thread.sleep(wTIME);
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url+dbName,userName,password);
String st="SELECT count FROM ThreadResults WHERE ThreadNo = "
+t;
Statement stmt = conn.createStatement();
stmt.execute(st);
ResultSet resultSet = stmt.getResultSet();
boolean b=resultSet.next();
synchronized(WebCrawler.seed.lock6)
{
float t1=(System.currentTimeMillis()-time)/60000;
if(b)
{
String s2="UPDATE ThreadResults SET count = "+WebCrawler.seed.count+", time = "+t1+" WHERE ThreadNo = "+t;
System.out.println("updated count");
stmt.executeUpdate(s2);
}
else
{
String s1="INSERT ThreadResults VALUES("+t+" ,"+WebCrawler.seed.count+" ,"+t1+")";
System.out.println("inserting count");
stmt.executeUpdate(s1);
}
}
resultSet.close();
conn.close();
}
catch(InterruptedException | ClassNotFoundException | InstantiationException | IllegalAccessException | SQLException c)
{
System.out.println("caught in thread resilt updation "+ c.getMessage());
}
}
}