After trying few packages with git hub, and trying to parse/process this quite a large excel document.
Each one of methods I was trying throw exception on out of memory.
I was google ing some more and found this GNU Library named koogra which seems to be only one I could see fit for the job, couldn’t bother too much and continue on searching as I am running out of time for this part of the project .
The code I have got by now is working pass the part of the “out of memory” issue,
so only thing left is how do I properly parse an Excel Document so it will be possible to extract say a kind of dictionary collection key is one column and value is another.
this is the code i have so far
var path = Path.Combine(Environment.CurrentDirectory, "tst.xlsx");
Net.SourceForge.Koogra.Excel2007.Workbook xcel = new Net.SourceForge.Koogra.Excel2007.Workbook(path);
var ss = xcel.GetWorksheets();
found it by some more …. google ing…
first row for usage on 2007 (
xlsx)second row is for
xlsversioni hope that i helped anyone else out there that encountered same “out of memory” issue … ‘
enjoy
a small update to the code above
OK.. I Have played with this a little , so as far as it is related to the content of the file
the chart is ranked based on
Unique IPand the current code is