我想嘗試並捕獲我的方法中的錯誤,以將更改抽屜的內容寫入html文檔。錯誤java.io.FileNotFoundException在文件不存在時出現。下面的代碼應該這樣做,但它會出現錯誤「PartB是不兼容的類型」。我認爲在我的try和catch代碼中存在一個錯誤,這是我寫的第一個錯誤,我爲什麼不起作用而不知所措。任何幫助都會很棒。謝謝。Java嘗試和捕獲錯誤
...
public static void writeHtmlFile()
{
try {
BufferedReader in = new BufferedReader((new FileReader("changedrawer.html")));
String sLine;
StringBuilder sb = new StringBuilder();
while ((sLine = in.readLine()) !=null)
sb.append(sLine+"\n");
//Close file
in.close();
//Output on console
System.out.println(sb.toString());
}
catch (PartB FileNotFoundException) //Why is PartB an incompatible type? (PartB is the name
of the class)
{ System.out.println ("error");
}
...
是PartB名稱的類或你的意思是變量? – Leon 2012-07-26 03:02:09
乙部是班級 – 2012-07-26 03:47:15