ext导出excel

本文介绍了一种使用ExtJS框架实现导出数据到Excel的方法。通过前端触发一个窗口打开请求,将具体的数据处理和Excel生成工作交由后端完成。后端采用Java语言实现,包括设置响应头、创建工作簿及工作表,并填充数据。
摘要由CSDN通过智能技术生成
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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值