如何在JSP中实现Forward

来源:java2s 作者:佚名 2007-11-23 出处:pcdog.com

apache  jsp  
//File: index.jsp
<html>
<!--
  Copyright (c1999 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 (c1999 The Apache Software Foundation.  All rights 
  reserved.
-->

<body bgcolor="white">
<font color="red">

VM Memory usage < 50%.
</html>

//File: two.html

<html>
<!--
  Copyright (c1999 The Apache Software Foundation.  All rights 
  reserved.
-->

<body bgcolor="white">
<font color="red">

VM Memory usage > 50%.
</html>


上一篇:JSP中读取HTTP Header
下一篇:JSP中Cookie的处理