最后,在java中尝试catch block语句

时间:2012-10-11 18:23:14

标签: java exception try-catch

我不明白为什么这段代码错了,我错过了什么?

    try{
input = inputFile.readLine();

}

finally{
inputFile.close();
}
catch (IOException e){
    System.out.println("I/O error: " + e.getMessage());
}

2 个答案:

答案 0 :(得分:1)

最后应该在catch块之后。

  try{}
  catch{}
  finaly

答案 1 :(得分:0)

您可以尝试使用此订单

try 
{
  ...
} 
catch (Exception ex) 
{
   //Treat exception
}
finally 
{
  //Clean your ressources
}