码迷,mamicode.com
首页 > 其他好文 > 详细

table導出excel | 後臺

时间:2016-11-03 18:44:30      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:color   ica   style   code   xls   new   catch   writer   turn   


第一種也是比較好的方法:

    
       String str=afwtHtml;

FileWriter writer;
try { writer = new FileWriter("D:\\logs\\nihao2.xls"); writer.write(str); writer.flush(); writer.close(); } catch (IOException e) { e.printStackTrace(); } return "ExportFinished";

第二種:

在後臺方法中加上前兩句,在瀏覽器就會以excel形式下載
response.setHeader("Content-Disposition","attachment;filename=aaa.xls");
response.setContentType("application/vnd.ms-excel");


String afwtHtml = "<table>...</table>"

return afwtHtml;

 

table導出excel | 後臺

标签:color   ica   style   code   xls   new   catch   writer   turn   

原文地址:http://www.cnblogs.com/lonely-buffoon/p/6027406.html

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