-4

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

    try{
input = inputFile.readLine();

}

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

2 回答 2

1

finally 应该在 catch 块之后。

  try{}
  catch{}
  finaly
于 2012-10-11T18:25:54.027 回答
0

你可以试试这个订单

try 
{
  ...
} 
catch (Exception ex) 
{
   //Treat exception
}
finally 
{
  //Clean your ressources
}
于 2012-10-11T18:25:23.260 回答