位置:首頁 > Java技術 > JSP教學 > JSTL <c:catch>標簽

JSTL <c:catch>標簽

<c:catch>標記捕獲發生在它的身上,並選擇性地暴露任何的Throwable。隻需將它用於錯誤處理和處理這個問題更優雅。

屬性:

<c:catch>標簽具有以下屬性:

屬性 描述 必須 默認
var 持有java.lang.Throwable,如果拋出在主體元素的變量的名稱。 No None

實例:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title><c:catch> Tag Example</title>
</head>
<body>

<c:catch var ="catchException">
   <% int x = 5/0;%>
</c:catch>

<c:if test = "${catchException != null}">
   <p>The exception is : ${catchException} <br />
   There is an exception: ${catchException.message}</p>
</c:if>

</body>
</html>

這將產生以下結果:

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