怎么把Jsp页面生成的数据导出为Excel文件
请问各位大虾,在Web开发中,Jsp页面显示的商品数据分3页显示的。而且这些数据是从Oracle数据库里查询出来的,现在要
求把Jsp显示的数据通过Excel文件格式保存到是脑上面。请问有什么办法吗???请各位帮助》》》》
------解决方案--------------------POI导出EXCEL
http://www.oschina.net/code/snippet_35115_2120
------解决方案--------------------poi开源下载
http://poi.apache.org/
------解决方案--------------------Java code
response.setContentType("application/vnd.ms-excel");
String fileName = new String("报表".getBytes("GBK"), "ISO_8859_1");
response.setHeader("Content-Disposition", "attachment;filename="
+ fileName + ".xls");