首页 > 网站 > 建站经验 > 正文

J,sp中的table多表头导出excel文件具体实现

2019-11-02 14:45:16
字体:
来源:转载
供稿:网友

 这篇文章主要介绍了Jsp中的table多表头导出excel文件具体实现,有需要的朋友可以参考一下

首先引入两份JS:copyhtmltoexcel.js以及 tableToExcel.js  代码如下:/*  * 默认转换实现函数,如果需要其他功能,需自行扩展 * 参数: *      tableID : HTML中Table对象id属性值 * 详细用法参见以下 TableToExcel 对象定义   */function saveAsExcel(tableID){ var tb = new TableToExcel(tableID);  tb.setFontStyle("Courier New");  tb.setFontSize(10);  tb.setTableBorder(2);  tb.setColumnWidth(7);  tb.isLineWrap(false);  tb.isAutoFit(true);  tb.getExcelFile();} /* *  功能:HTML中Table对象转换为Excel通用对象. *  作者:Jeva *  时间:2006-08-09 *  参数:tableID  HTML中Table对象的ID属性值 *  说明: *       能适应复杂的HTML中Table对象的自动转换,能够自动根据行列扩展信息 *       合并Excel中的单元格,客户端需要安装有Excel *       详细的属性、方法引用说明参见:Excel的Microsoft Excel Visual Basic参考 *  示范: *       var tb = new TableToExcel('demoTable'); *    tb.setFontStyle("Courier New"); *    tb.setFontSize(10);  //推荐取值10 *    tb.setFontColor(6);  //一般情况不用设置 *    tb.setBackGround(4);  //一般情况不用设置 *    tb.setTableBorder(2);  //推荐取值2 *    tb.setColumnWidth(10);  //推荐取值10 *    tb.isLineWrap(false); *    tb.isAutoFit(true); *     *    tb.getExcelFile(); *   如果设置了单元格自适应,则设置单元格宽度无效 *  版本:1.0 */function TableToExcel(tableID) {    this.tableBorder = -1; //边框类型,-1没有边框 可取1/2/3/4    this.backGround = 0; //背景颜色:白色   可取调色板中的颜色编号 1/2/3/4....    this.fontColor = 1;  //字体颜色:黑色    this.fontSize = 10;  //字体大小    this.fontStyle = "宋体
370看看电影网[www.aikan.tv/special/370kankandianyingwang/]
"; //字体类型    this.rowHeight = -1; //行高    this.columnWidth = -1; //列宽    this.lineWrap = true; //是否自动换行    this.textAlign = -4108; //内容对齐方式   默认为居中    this.autoFit = false;  //是否自适应宽度    this.tableID = tableID; } TableToExcel.prototype.setTableBorder = function (excelBorder) {    this.tableBorder = excelBorder ;}; TableToExcel.prototype.setBackGround = function (excelColor) {    this.backGround = excelColor;}; TableToExcel.prototype.setFontColor = function (excelColor) {    this.fontColor = excelColor;}; TableToExcel.prototype.setFontSize = function (excelFontSize) {    this.fontSize = excelFontSize;}; TableToExcel.prototype.setFontStyle = function (excelFont) {    this.fontStyle = excelFont;}; TableToExcel.prototype.setRowHeight = function (excelRowHeight) {    this.rowHeight = excelRowHeight;}; TableToExcel.prototype.setColumnWidth = function (excelColumnWidth) {    this.columnWidth = excelColumnWidth;}; TableToExcel.prototype.isLineWrap = function (lineWrap) {    if (lineWrap == false || lineWrap == true) {        this.lineWrap = lineWrap;    }}; TableToExcel.prototype.setTextAlign = function (textAlign) {    this.textAlign = textAlign;}; TableToExcel.prototype.isAutoFit = function(autoFit){ if(autoFit == true || autoFit == false)  this.autoFit = autoFit ;} //文件转换主函数TableToExcel.prototype.getExcelFile = function () {    var jXls, myWorkbook, myWorksheet, myHTMLTableCell, myExcelCell, myExcelCell2;    var myCellColSpan, myCellRowSpan;     try {        jXls = new ActiveXObject('Excel.Application');    }    catch (e) {        alert("无法启动Excel!nn" + e.message +            "nn如果您确信您的电脑中已经安装了Excel,"+           "那么请调整IE的安全级别。nn具体操作:nn"+           "工具 →
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表