如何从jsp页面导出图表到excel页面

时间:2011-05-30 10:26:16

标签: java excel charts

HI,我在jsp页面上显示图表,并在图表下方的网格中显示数据,现在我想将带有数据的图表导出到Excel工作表。在excel中,数据将显示在网格下面的hte图中。

提前致谢

1 个答案:

答案 0 :(得分:1)

首先,您需要下载此库并将其添加到类路径中 jexcelapi.sourceforge.net

你应该看一下这个例子 reading and writing excel documents in Java

在你的jsp页面中,你可以有一个触发servlet的按钮。然后,servlet将启动上面的脚本并响应浏览器。

servlet for creating excel documents

基本上 - 您需要将数据传递给servlet并让servlet构建excel文档,然后通过HttpServletResponse将其发送给用户。

祝你好运