<c:catch> 标签


<c:catch> 标签主要用来处理产生错误的异常状况,并且将错误信息储存起来。

属性

<c:catch>标签有如下属性:

属性 描述 是否必要 默认值
var 用来储存错误信息的变量 None

实例演示

  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  2. <html>
  3. <head>
  4. <title>c:catch 标签实例</title>
  5. </head>
  6. <body>
  7.  
  8. <c:catch var ="catchException">
  9. <% int x = 5/0;%>
  10. </c:catch>
  11.  
  12. <c:if test = "${catchException != null}">
  13. <p>The exception is : ${catchException} <br />
  14. There is an exception: ${catchException.message}</p>
  15. </c:if>
  16.  
  17. </body>
  18. </html>

以上实例运行结果:

  1. The exception is : java.lang.ArithmaticException: / by zero
  2. There is an exception: / by zero