Example of using jfreechart to generate a report Image Using JSP

Source: Internet
Author: User
<% @ Page Language = "Java" contenttype = "text/html; charset = UTF-8" pageencoding = "UTF-8" %>
<% @ Page import = "org. jfree. Data. Category. *" %>
<% @ Page import = "org. jfree. Chart. *" %>
<% @ Page import = "org. jfree. Chart. Plot. *" %>
<%
// Old zizhu http://hi.csdn.net/java2000_net/
//
// From http://www.java2000.net/viewthread.jsp? Tid = 2361
//
Out. clearbuffer ();
Response. setcontenttype ("image/JPEG ");
Defaultcategorydataset dataset = new defaultcategorydataset ();
Dataset. addvalue (610, "Guangzhou", "pork ");
Dataset. addvalue (540, "Guangzhou", "beef ");
Dataset. addvalue (320, "Guangzhou", "mutton ");
Dataset. addvalue (370, "Guangzhou", "chicken ");
Dataset. addvalue (130, "Guangzhou", "fish ");
Jfreechart chart = chartfactory. createbarchart3d ("biangji", "sales", "meat", dataset, plotorientation. Vertical, false, false,
False );
Java. Io. outputstream OS = response. getoutputstream ();
Javax. ImageIO. ImageIO. Write (chart. createbufferedimage (500,300), "Jpeg", OS );
OS. Flush ();
OS. Close ();
%>

 
This method outputs the image directly to outputstream through ImageIO. Of course, it is best to use servlet if possible.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.