直接把Jsp页面保存或导出Excel表格(最简单的导出Excel的方式)

来源:互联网 发布:知画的孩子是谁的 编辑:程序博客网 时间:2024/06/03 06:36

看到这个标题有人会很疑问,Java导出Excel 有很多文章呀,都知道怎么用呀。呵呵,我也是这么认为,我们常用的就是jxl 或者poi 。现在jxl 代码不在更新不支持2007,一般都采用poi进行excel的操作。今天在做报表时,需要做一个简单快速的excel导出,所以想到了以前用到过的一个方式。一个简单的方法,这个方法只适用于excel简单的导出,直接通过输出的页面,然后设置页面为输出流的文件格式,这样当action转向到jsp页面的时候,直接就是将页面输出。

jsp页面的代码:

<%@ page language="java" pageEncoding="UTF8"%>   <html:html locale="true">       <head>              <title>LogExport</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="Content-Type" content="text/html; charset=UTF-8">           <%             response.setCharacterEncoding("UTF-8");             response.setContentType("application/vnd.ms-excel;");                response.setHeader("Content-Disposition", "attachment;filename=\""+new String("Log.xls".getBytes(),"ISO-8859-1")+"\"");           %>         </head>       <body>           <form action="/Action_export.do">               <table width="100%" border="1" cellspacing="0" cellpadding="0" id="datagrid">                   <thead>                       <tr class="HeaderStyle" style="font-weight: normal;">                           <th>用户</th>                           <th>姓名</th>                           <th>日期</th>                           <th>登录IP</th>                           <th>主机名</th>                           <th colspan="3">                            <table width='100%'  border="1" cellspacing="3" cellpadding="0" frame='void' >                                    <tr><td colspan="3" style='background:transparent;' align="center">操作信息</td></tr>                                   <tr style='background:transparent;'>                                       <td width="40px" align="center">操作</td>                                       <td width="100px" align="center">标题</td>                                       <td align="center">扩展信息</td>                                   </tr>                               </table>                           </th>                       </tr>                   </thead>                   <jsp:include page="common.jsp" flush="true" />               </table>           </form>       </body>   </html:html>