error.jsp

来自「java开发的一套非常好用的oa系统」· JSP 代码 · 共 28 行

JSP
28
字号
<%
/**
 *	$RCSfile: error.jsp,v $
 *	$Revision: 1.1.1.1 $
 *	$Date: 2002/09/09 13:50:26 $
 */
%>


<%@ page import="java.io.*"
    isErrorPage="true"
%>

Jive Forums 2.0 Admin Skin Error:<p>

<%  exception.printStackTrace();
    if (exception != null) {
        StringWriter sout = new StringWriter();
        PrintWriter pout = new PrintWriter(sout);
        exception.printStackTrace(pout); %>
<pre>
        <%= sout.toString() %>
</pre>
<%  } %>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?