Ext导出excel很麻烦的,我们可以打开一个window.open()或window.location.href=''发送请求;把操作excel的工作交给后台的action处理就行了
[b]JS代码:[/b]
var grid =new Ext.grid.GridPanel({
region:'center',
store:store,
cm:cm,
tbar : [{
text : "导出",
iconCls:"post",
handler :[i][b]exportToExcel[/b][/i]
}]
});
var resultView = new Ext.Viewport( {
layout : 'border',
items : [grid]
});
}
//导出excel表
function [i][b]exportToExcel[/b][/i](){
var appWindow = window.open("xxx.action",
"menubar=0,scrollbar=0,resizable=1,channelmode=1,location=0,status=1");
appWindow.focus();
//也可以用location.href来发送请求
//window.location.href="xxx.action?ids=123456";
}
[b]action代码:[/b]
public boolean exportToExcel(HttpServletResponse response, List list)
throws Exception {
OutputStream os = response.getOutputStream();
WritableWorkbook wbook = Workbook.createWorkbook(os);
WritableSheet wsheet = wbook.createSheet("合同信息", 0);
Label label =new Label(0,0 ,"test");
Label label1 =new Label(0,1 ,"test1");
wsheet.addCell(label);
wsheet.addCell(label1);
response.setHeader("Content-disposition","attachment; filename=contract.xls");
response.setContentType("application/vnd.ms-excel");
wbook.write(); // 写入文件
wbook.close();
os.close(); // close outputStream
return true;
}
ext导出excel
最新推荐文章于 2021-03-04 01:54:33 发布
本文介绍了一种使用ExtJS框架实现导出数据到Excel的方法。通过前端触发一个窗口打开请求,将具体的数据处理和Excel生成工作交由后端完成。后端采用Java语言实现,包括设置响应头、创建工作簿及工作表,并填充数据。
摘要由CSDN通过智能技术生成