HI, I am displaying the graph on my jsp page and also data in grid below the graph, now I want to export the graph with data to the excel sheet. in excel the data will display in below hte graph in a grid.
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
First you need to download and add this library to your classpath
jexcelapi.sourceforge.net
You should look at this example
reading and writing excel documents in Java
In your jsp page you can have a button that triggers a servlet. The servlet will then kick off the script above and respond to the browser.
servlet for creating excel documents
Basically – you need to pass the data to the servlet and let the servlet build the excel document then send it to the user via the HttpServletResponse.
Good luck