<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
List<Map<Object, Object>> list = (List<Map<Object, Object>>) request
.getAttribute("fileList");
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    
    <title>最新文档</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->  </head>
  
  <body>
<table height="100%" border="0">
<%
for (int i = 0; i < list.size(); i++) {
%>
<tr>
<td>
<%=(i + 1) %>、<a href="systemfile/"+<%=list.get(i).get("fu0204") %> target="_blank" class="style2" title="点击下载"><%=list.get(i).get("fu0203") %></a>
</td>
</tr>
<%
}
%>
<tr>
<td>
</td>
<td width="5" rowspan="5">
<img src="/ephr/img/icons/ahead.gif"
onclick="javascript:top.addTab('download','文档下载','/ephr/module/selfHelpManager/systembrowseordown.jsp');top.updateTab_ld('download','文档下载','/ephr/module/selfHelpManager/systembrowseordown.jsp')" />
</td>
<td width="100" rowspan="5">
<a class="style2"
style="float: right; color: #0033FF; margin-bottom: 0px;"
onclick="javascript:top.addTab('download','文档下载','/ephr/module/selfHelpManager/systembrowseordown.jsp');top.updateTab_ld('download','文档下载','/ephr/module/selfHelpManager/systembrowseordown.jsp')"
title="历史文档下载">历史文档下载</a>
</td>
</tr>
</table>
</body>
</html>
现在的问题就是我要从一个servlet中跳转到这个jsp中然后在jsp中取出数据使用,但是现在要生成静态的页面,请高手帮忙,最好是有直接生成的方法!