我不明白为什么这段代码错了,我错过了什么?
try{
input = inputFile.readLine();
}
finally{
inputFile.close();
}
catch (IOException e){
System.out.println("I/O error: " + e.getMessage());
}
答案 0 :(得分:1)
最后应该在catch块之后。
try{}
catch{}
finaly
答案 1 :(得分:0)
您可以尝试使用此订单
try
{
...
}
catch (Exception ex)
{
//Treat exception
}
finally
{
//Clean your ressources
}