首页 > 代码库 > table導出excel | 後臺
table導出excel | 後臺
第一種也是比較好的方法:
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 | 後臺
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。