单选题 请阅读如下程序。
import java.io.*;
public class ExceptionCatch
{
public static void main (String args[])
{
try
{
FileInputStream fis=new FilelnputStream ("text");
System.out.println ("content of text is: ");
}
catch (FileNotFoundException e)
{
System.out.println (e);
System.out.println ("message:"+e.getMessageQ);
e.printStackTrace (System.out);
}______;
{
System.out.println (e);
}
}
}
为保证程序正确运行,程序中下划线处的语句应是______。
【正确答案】 C
【答案解析】[解析] 题中程序的最后一个语句体“{System.out.println(e);}”表示另一个catch从句的开始,catch从句由catch引导,并且要先捕获异常,所以选项C正确。