码迷,mamicode.com
首页 > Web开发 > 详细

JSP生成Excel报表

时间:2015-12-06 22:33:28      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

  JSP实现报表下载

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<% response.setContentType("application/vnd.ms-excel;charset=UTF-8"); %>
<!-- 设置下载文件的文件名 -->
<!-- 设置excel为显示模式 -->
<!-- <% response.setHeader("Content-disposition","inline; filename=test.xls"); %> -->
<!-- 设置excel为下载模式 -->
<% response.setHeader("Content-disposition","attachment; filename=test.xls"); %>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<head>
<title>报表</title>    
</head>
<body>
    <CENTER>
         <table cellpadding="1" cellspacing="1"  border="1">
              <tr>
                      <td colspan="5" align="center">报表</td>
              </tr>
                <tr class="dan_tr">
                       <th>使用时间</th>
                       <th>使用者</th>
                       <th>传播者</th>
                       <th>使用地点</th>
                       <th>消耗积分</th>
                </tr>
          <c:forEach var="list" items="${list}">
              <tr align="center">
                   <td width="135">${list.userDate}</td>
                   <td width="100">${list.userName}</td>
                   <td width="100">${list.puserName}</td>
                   <td width="350">${list.userCorp}</td>
                   <td>${list.integral}分</td>
              </tr>
          </c:forEach>
         </table>
    </CENTER>
</body>
</html>

 

JSP生成Excel报表

标签:

原文地址:http://www.cnblogs.com/AndroidJotting/p/5024504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!