SpreadSheetML VS POI
Hi,Is there any replacement for POI API for exporting excel sheet . Since it is too memory consuming. Is SpreadSheetML is good option?Regards,Suresh
# 2
Thanks for the reply
I already have CSV export if it contains more than 64000 rows;
But i need to have and ExcelApi which is very less memory consuming.
3) Stream pure HTML table instead of binary data. can u give me a code sample for this?
Thanks in advance
Regards,
suresh_in80
# 3
HTML tables aren't that hard. You should know them.
<table>
<tr>
<td>row1col1</td>
<td>row1col2</td>
</tr>
<tr>
<td>row2col1</td>
<td>row2col2</td>
</tr>
</table>
Stream it as a .xls file with the right contenttype for excel. This will be opened in the right rows/cols in excel.
# 5
Why will it not help? Or don't you just know how to map ResultSet values into a HTML table?No, I don't know something about SpreadsheetML, but I don't stop you to try it out yourself either :)
# 6
> Why will it not help? Or don't you just know how to> map ResultSet values into a HTML table?> No, I don't know something about SpreadsheetML, but I> don't stop you to try it out yourself either :)Thanks for the update