当我在 try 语句中使用 out.println 时,我的 .jsp 文件没有输出字符。例如:
out.println("testing123");
try {
connectionDB = DriverManager.getConnection(DATABASE_URL, userDB, passDB);
psDB = connectionDB.prepareStatement(sql);
rsDB = psDB.executeQuery();
out.println("hello");
while(rsDB.next()){
out.println("yay");
}
} catch (Exception errorMessage) {
}
它将向页面输出“testing123”但不会输出“hello”这是为什么,我该如何解决这个问题?感谢所有帮助。请记住,这是一个 .jsp 页面。