我写了以下代码。我希望当控制变为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());
}
}
}
答案 0 :(得分:1)
虽然这不是安排重复任务的首选方法,但您可以通过捕获Throwable
而不是明确的例外列表来修复它。这样你就可以确保捕获任何理论上可以抛出的东西。请务必打印整个异常堆栈跟踪,而不仅仅是消息。
修复捕获时,您需要另外修复清理逻辑:将close
语句放入finally
。更好的是,重写您的代码以使用自动资源管理。语法为try (Statement stmt = conn.createStatement()) { ... }
。
安排重复任务的正确方法是使用执行程序:
final ScheduledExecutorService sched = Executors.newSingleThreadScheduledExecutor();
sched.scheduleWithFixedDelay(task, 0, wTIME, TimeUnit.MILLISECONDS);
答案 1 :(得分:0)
你可以写
catch(Exception e)
而不是你写的。它将捕获所有异常。