关于导出数据为Excel的几种方式

方法一:
最简单的方式就是在JSP页面的开始部分使用如下的头部信息
<%response.setContentType("application/msexcel");
response.setHeader("Content-disposition","attachment; filename=excelname.xls");%>
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=GBK">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 11">
</head>
在导出按钮中,直接转到要导出的页面。设置为如上的头部信息就可以。

方法二
使用script

buttononclick事件调用下面js 方法
然后你要导出的table定义个id=viewtable.这样就只导出这个table的内容。操作按钮在table外,不会导出来的。
function AllAreaExcel()
{
var oXL = new ActiveXObject("Excel.Application");
var oWB = oXL.Workbooks.Add();
var oSheet = oWB.ActiveSheet;
var sel=document.body.createTextRange();
sel.moveToElementText(export1);
sel.select();
sel.execCommand("Copy");
oSheet.Paste();
oXL.Visible = true;
}

function AllAreaExcel()
{
try{
var oXL = new ActiveXObject("Excel.Application");
var oWB = oXL.Workbooks.Add();
var oSheet = oWB.ActiveSheet;
}catch(e){
alert("创建excel对象失败,请确认已经安装了excel软件!");
return false;
}
var sel=document.body.createTextRange();
sel.moveToElementText(export1);
sel.select();
sel.execCommand("Copy");
oSheet.Paste();
oXL.Visible = true;
} <!--v:3.2-->

你可能感兴趣的:(html,jsp,Excel,Microsoft,Office)