有关jsp页面中out语句与FileReader的问题
以下代码段为jsp页面中截取,我执行后发现语句a执行了,但语句b未执行。原因是存在语句x,请问各位,为什么?谢谢。
<%
try
{
out.print("aa"); // 语句a
File fl = new File("questions.txt");
FileReader fRead = new FileReader("fl"); // 语句x
out.print("bb"); // 语句b
}
catch (Exception e)
{
e.printStackTrace();
}
%>