我認爲這是基本的東西,但我不知道該怎麼做。爲什麼我會得到IOException never thrown in body of corresponding try statement
Java catch IOException
public static void main(String[] args)
{
File inputFile = null ;
try
{
inputFile = new File("records.txt") ;
}
catch (IOException e)
{
System.out.print("file not found!") ;
}
好的和簡單的答案+1。我可能會添加IOException異常。如果File構造函數可以拋出它,它不會編譯沒有捕獲...如果你刪除捕獲你看到它仍然編譯,因此IOException不會拋出那裏。 – 2011-04-02 16:14:59