Arno_Wang 2014-01-15 07:44
浏览 6741

NPOI写入大数据到excel中,如何降低使用的内存,解决内存占用过大的问题

SystemManage.q_station_log qStationLogsys = new SystemManage.q_station_log();
//int allcount = qStationLogsys.GetAllCount();
int allcount = 100000;
#region
string filename = "xxxx.xls";
string path = "/exceldata/" + filename;
string FilePathName = HttpContext.Current.Server.MapPath(path);
System.IO.File.Delete(FilePathName);
FileStream Fs = new FileStream(FilePathName, FileMode.Create);
IWorkbook workbook = new HSSFWorkbook();
int sheetindex = 1;
ISheet sheet = workbook.CreateSheet("￈xx" + sheetindex.ToString() + "");
int pagesize = 1000;
int currentIndex = 1;
int sheetcount = 0;
#endregion
int fornum = (allcount - allcount % pagesize) / pagesize + 1;
while (currentIndex <= fornum)
{
DataSet ds = qStationLogsys.GetAllLogPart(pagesize, currentIndex);
if (ds.Tables[0].Rows.Count > 0)
{
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
if (sheetcount % 65535 == 0)
{
if (sheetindex != 1)
{
workbook.Write(Fs);
//workbook.Clear();
Fs.Flush();
Fs.Close();
Fs.Dispose();
Fs = new FileStream(FilePathName, FileMode.Open);
sheetcount = 0;
sheet = workbook.CreateSheet("￈xxx" + sheetindex.ToString() + "");

                        }
                        creat_title(sheet);//写入头的内容
                        sheetcount++;
                        sheetindex++;
                        creat_content(sheet, sheetcount, ds.Tables[0].Rows[i]);

//写入内容
}
else
{
creat_content(sheet, sheetcount, ds.Tables[0].Rows[i]);
sheetcount++;
}

                }
            }
            currentIndex++;
            ds.Clear();
        }

        workbook.Write(Fs);
        workbook.Clear();
        Fs.Flush();
        Fs.Close();
        Fs.Dispose();

//-------------------------------------------------
说明:代码如上,实现写入100000条数据,每次从数据库读取1000条,循环写入,当数据超过65535时,会新建一个工作簿。功能已经实现,但是每次写入内容占用过高,有什么方法可以改进,请教下,感激。。。。。

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 如何在scanpy上做差异基因和通路富集?
    • ¥20 关于#硬件工程#的问题,请各位专家解答!
    • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
    • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
    • ¥30 截图中的mathematics程序转换成matlab
    • ¥15 动力学代码报错,维度不匹配
    • ¥15 Power query添加列问题
    • ¥50 Kubernetes&Fission&Eleasticsearch
    • ¥15 報錯:Person is not mapped,如何解決?
    • ¥15 c++头文件不能识别CDialog