开发者

how export graph from jsp page to excel page

开发者 https://www.devze.com 2023-03-09 11:31 出处:网络
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 gra开发者_如

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 gra开发者_如何学运维ph in a grid.

Thanks in advance


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

0

精彩评论

暂无评论...
验证码 换一张
取 消