Displaying a jfreechart in a jsp page

 ̄綄美尐妖づ 提交于 2019-12-02 17:40:23

问题


I want to display a jfreechart chart in a jsp page. I have written code as follows -

...
<%
ChartCreator chart = new ChartCreator();
chart.createCategoryChart();
%>
<img src = "chart.jpg"/>

where the createCategoryChart() method creates the required jpg. It is stored in the eclipse folder(i have not put any path in my filename).

I am not able to view the chart in the jsp page, but the file is created.

What am I doing wrong?


回答1:


I would suggest to use Servlet to create Chart.

JSP is mainly used for presentation (View).

Create a servlet which creates the chart and send back it as response.

import javax.imageio.ImageIO;


protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
        OutputStream out = response.getOutputStream(); /* Get the output stream from the response object */
        response.setContentType("image/png"); /* Set the HTTP Response Type */
        ChartCreator chart = new ChartCreator(); // Create chart
        chart.createCategoryChart(); 
        ChartUtilities.writeChartAsPNG(out, chart, 400, 300);/* Write the data to the output stream */
    }

Call Servlet from JSP.

<img src="/drawChartServlet?type=myDesiredChart&width=..and other processed parameters" ..>



来源:https://stackoverflow.com/questions/10712521/displaying-a-jfreechart-in-a-jsp-page

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!