求asp.net导出excel表的高效方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求asp.net导出excel表的高效方法相关的知识,希望对你有一定的参考价值。
网上找了几个方法都是先把数据库里的数据存到一个DataTable再遍历DataTable的每一格逐个放入excel
这个方法数据量大的时候实在太费事了
我导一个几万行20列的表出来服务器负荷很高,而且非常慢
请问还有什么高效点的方法?
if (dbgname.Rows.Count == 0)
MessageBox.Show("没有数据可供导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
else
SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "Execl files (*.xls)|*.xls";
saveFileDialog.FilterIndex = 0;
saveFileDialog.RestoreDirectory = true;
saveFileDialog.CreatePrompt = true;
saveFileDialog.Title = "导出文件保存路径";
saveFileDialog.ShowDialog();
string strName = saveFileDialog.FileName;
if (strName.Length != 0)
ToolStripProgressBar toolStripProgressBar1 = new ToolStripProgressBar();
toolStripProgressBar1.Visible = true;
System.Reflection.Missing miss = System.Reflection.Missing.Value;
Microsoft.Office.Interop.Excel.ApplicationClass excel = new Microsoft.Office.Interop.Excel.ApplicationClass();
excel.Application.Workbooks.Add(true); ;
excel.Visible = false;//若是true,则在导出的时候会显示EXcel界面。
if (excel == null)
MessageBox.Show("EXCEL无法启动!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
Microsoft.Office.Interop.Excel.Workbooks books = (Microsoft.Office.Interop.Excel.Workbooks)excel.Workbooks;
Microsoft.Office.Interop.Excel.Workbook book = (Microsoft.Office.Interop.Excel.Workbook)(books.Add(miss));
Microsoft.Office.Interop.Excel.Worksheet sheet = (Microsoft.Office.Interop.Excel.Worksheet)book.ActiveSheet;
sheet.Name = "test";
//生成字段名称
for (int i = 0; i < dbgname.ColumnCount-8; i++)
excel.Cells[1, i + 1] = dbgname.Columns[i].HeaderText.ToString();
//填充数据
for (int i = 0; i < dbgname.RowCount - 1; i++)
for (int j = 0; j < dbgname.ColumnCount - 8; j++)
if (dbgname[j, i].Value == typeof(string))
excel.Cells[i + 2, j + 1] = "" + dbgname[i, j].Value.ToString();
else
excel.Cells[i + 2, j + 1] = dbgname[j, i].Value.ToString();
toolStripProgressBar1.Value += 100 / dbgname.RowCount;
sheet.SaveAs(strName, miss, miss, miss, miss, miss, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange, miss, miss, miss);
book.Close(false, miss, miss);
books.Close();
excel.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(sheet);
System.Runtime.InteropServices.Marshal.ReleaseComObject(book);
System.Runtime.InteropServices.Marshal.ReleaseComObject(books);
System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);
GC.Collect();
MessageBox.Show("数据已经成功导出到:" + saveFileDialog.FileName.ToString(), "导出完成", MessageBoxButtons.OK, MessageBoxIcon.Information);
toolStripProgressBar1.Value = 0;
toolStripProgressBar1.Visible = false;
参考技术A 使用SQL的bcp命令,传递SQL语句(其中包含表名,列名,文件位置等)。
将文件生成到一个专门的临时目录中,再用file类读取出来供用户下载。
这是一个思路,愿与你继续交流具体的实现代码。因为我也有这样的几万行下载的需求。本回答被提问者采纳 参考技术B you can try use xslt for XSL tranform, XMLDataDocument to handle the output to excel
poi导出的excel求汇总,
参考技术A poi导出的excel求汇总的步骤:1、寻找poi所需要的包,导入到项目中。值得注意的是,不要找poi很老的jar包,很多方法是无效且不好用。建议版本高点。我使用的是poi-3.7版本
2、建立一个导出方法,创建excel表、表的工作空间、单元格如图所示
3、单元格中存入值,及改变单元格样式
4、输出到具体的路径。追问
数据我都导出来了,就差汇总了,有特定的条件,比如说就是两个相邻的行进行比较,若名称相同则汇总名称,数据相加。两行相邻若名称不同则汇总上一行的数据,我就差两个list如何循环放置到excel中了
以上是关于求asp.net导出excel表的高效方法的主要内容,如果未能解决你的问题,请参考以下文章
c# asp.net 页面上的多个表导出到一个excel文件中