请阅读下面程序
import java.io.*;
public class ExceptionCatch
public static void main (String args[])
try
FilelnputStream fis=new FilelnputStream("text");
System.out.printIn ("content oftext isA: ");
catch (FileNotFoundException e)
System.out.printIn (e);
System.out.printIn("message: "+e.getMessge());
e.printStackTrace(Sysrem.out);
______
System.out.printIn (e);
为保证程序正确运行,程序中下画线处的语句应是______。
A.catch(FilelnpuStueam fis)
B.printStackTrace()
C.catch(IOException e)
D.System.out.printIn(e)