I wish to export my queried result to excel or csv.
I usually use function in display tag to export to csv,
but this time…
The problem is that records will be over 20,000 so I do not want to display the result, but just to provide excel file.
I wish to export my queried result to excel or csv. I usually use
Share
Use a servlet, write the data in CSV (or Excel) format to the response output stream, and make sure to set the appropriate content-type on the response and to set the following header:
There are lots of libraries to generate CSV or Excel from Java.