Quantcast
Channel: NPOI
Viewing all articles
Browse latest Browse all 1621

New Post: Out of Memory Error - while writing to Excel using Xssfworkbook

$
0
0
No. Btw, how much memory did you consume on your computer when running the above code?
        for (int rownum = 0; rownum < 5000; rownum++)
        {
            IRow row = worksheet.CreateRow(rownum);
            for (int celnum = 0; celnum < 1000; celnum++)
            {
                ICell Cell = row.CreateCell(celnum);
                Cell.SetCellValue("Cell: Row-" + rownum + ";CellNo:" + celnum);
            }
        }
I'm afraid even this part takes a lot of memory. It's 5000*1000=5,000,000 cells.

Viewing all articles
Browse latest Browse all 1621

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>