I'm trying to learn how to export data from a .jsp to either Excel/CSV/PDF. Are there any quick guides or tutorials?
I'm confused and a starter in this. Can anyone guide me through?
I got a rough idea on how it works through researching:
Example:
- Create a mainPage.jsp with
<a href="exportData.jsp">Export to Excel</a>
- Create a exportData.jsp with the Excel stuff?
Is the correct concept? What should I include inside the exportData.jsp to export the entire data to a file?
Thanks in advance.