struts2: 通过流输出实现exce导出

December 17, 2023
测试
测试
测试
测试
5 分钟阅读

参考下面代码,在Action中加一个方法:

 1     // 导出excel
 2     public String excel() throws Exception {
 3     StringBuffer excelBuf = new StringBuffer();
 4     excelBuf.append("运单号").append("\t").append("始发站").append("\t").append("目的站").append("\n");
 5     excelBuf.append("112-00100100").append("\t").append("PEK").append("\t").append("SHA").append("\n");
 6     excelBuf.append("112-00100111").append("\t").append("PVG").append("\t").append("XIY").append("\n");
 7     excelBuf.append("112-00100122").append("\t").append("SHA").append("\t").append("HHY").append("\n");
 8     String excelString = excelBuf.toString();
 9     excelStream = new ByteArrayInputStream(excelString.getBytes(), 0, excelString.getBytes().length);
10     return "excel";
11     }

实质上是一个格式化的cvs文本文件,但是所有的excel/wps都能识别这种格式,导出的数据量不大,且没有复杂的线框格式要求时,这种处理方式最为方便

struts2的配置文件:

 1 <package name="cba_index" ...>
 2     ...
 3     <action name="index_*" method="{1}" class="CbaAction">
 4         <result name="success">/mu-reservation/cba/index.jsp</result>            
 5         <!-- 导出excel -->
 6         <result name="excel" type="stream">
 7             <param name="contentType">application/vnd.ms-excel</param>    <!-- 注意这里的ContentType -->
 8             <param name="inputName">excelStream</param>                   <!-- 这里需要和Action里的变量名一致 -->
 9             <param name="contentDisposition">filename="download.xls"</param> <!-- 下载文件的名字 -->
10             <param name="bufferSize">10240</param>  <!-- 下载文件的大小 10485760=10M -->
11         </result>
12     </action>
13     ...
14 </package>

页面上

1 <a href="index_excel.do" target="_blank">导出excel示例</a>

导出后的文件打开效果:

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多