您的位置:首页 > 编程语言 > Java开发

JAVA-JSP内置对象之exception对象用来处理错误异常

2017-10-15 13:42 441 查看
<%@ page language="java" contentType="text/html;charset=gb2312" errorPage="ExceptionDemo1.jsp" %>
<html>
<head>
<title>错误页面</title>
</head>
<body>
<%
int[] arr = {1,2,3};
out.println(arr[3]);
%>
</body>
</html>


View Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐