如何在JSP中实现Forward
2007-12-23 12:35:55 来源:WEB开发网核心提示://File: index.jsp<Html><!--Copyright (c) 1999 The Apache Software Foundation.All rights reserved.--><% double freeMem = Runtime.getRuntime().fre
//File: index.jsp
<Html>
<!--
Copyright (c) 1999 The Apache Software Foundation. All rights
reserved.
-->
<%
double freeMem = Runtime.getRuntime().freeMemory();
double totlMem = Runtime.getRuntime().totalMemory();
double percent = freeMem/totlMem;
if (percent < 0.5) {
%>
<jsp:forward page="one.jsp"/>
<% } else { %>
<jsp:forward page="two.html"/>
<% } %>
</html>
//File: one.jsp
<html>
<!--
Copyright (c) 1999 The Apache Software Foundation. All rights
reserved.
-->
<body bgcolor="white">
<font color="red">
VM Memory usage < 50%.
</html>
//File: two.html
<html>
<!--
Copyright (c) 1999 The Apache Software Foundation. All rights
reserved.
-->
<body bgcolor="white">
<font color="red">
VM Memory usage > 50%.
</html>
<Html>
<!--
Copyright (c) 1999 The Apache Software Foundation. All rights
reserved.
-->
<%
double freeMem = Runtime.getRuntime().freeMemory();
double totlMem = Runtime.getRuntime().totalMemory();
double percent = freeMem/totlMem;
if (percent < 0.5) {
%>
<jsp:forward page="one.jsp"/>
<% } else { %>
<jsp:forward page="two.html"/>
<% } %>
</html>
//File: one.jsp
<html>
<!--
Copyright (c) 1999 The Apache Software Foundation. All rights
reserved.
-->
<body bgcolor="white">
<font color="red">
VM Memory usage < 50%.
</html>
//File: two.html
<html>
<!--
Copyright (c) 1999 The Apache Software Foundation. All rights
reserved.
-->
<body bgcolor="white">
<font color="red">
VM Memory usage > 50%.
</html>
(出处:http://www.cncms.com)
[]
更多精彩
赞助商链接