JSP調用JavaBean在網頁上動態產生柱狀圖
來源:互聯網
上載者:User
我們經常要在網頁看到一些動態更新的圖片,最常見的莫過於股票的K線圖,本文試圖通過一個簡單的執行個體,向大家展示如何通過JSP 調用JavaBean在網頁上動態產生柱狀圖。
背景:本人最近在為某統計局開發項目時,涉及到在網頁上動態產生圖片的問題,費了一天的時間,終於搞定,為協助大家在以後遇到同樣的問題時不走彎路,現將設計思想及原始碼公布出來,與大家共勉。以下代碼在Windows2000成功測試通過,Web應用伺服器採用Allaire公司的Jrun3.0。
第一步:建立一個Java Bean用來產生jpg檔案
來源程式如下:
//產生圖片的 Java Bean
//作者:崔冠宇
//日期:2001-08-24
import java.io.*;
import java.util.*;
import com.sun.image.codec.jpeg.*;
import java.awt.image.*;
import java.awt.*;
public class ChartGraphics {
BufferedImage image;
public void createImage(String fileLocation) {
try {
FileOutputStream fos = new FileOutputStream(fileLocation);
BufferedOutputStream bos = new BufferedOutputStream(fos);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(bos);
encoder.encode(image);
bos.close();
} catch(Exception e) {
System.out.println(e);
}
}
public void graphicsGeneration(int h1,int h2,int h3,int h4,int h5) {
final int X=10;
int imageWidth = 300;//圖片的寬度
int imageHeight = 300;//圖片的高度
int columnWidth=30;//柱的寬度
int columnHeight=200;//柱的最大高度
ChartGraphics chartGraphics = new ChartGraphics();
chartGraphics.image = new BufferedImage(imageWidth, imageHeight, BufferedImage.TYPE_INT_RGB);
Graphics graphics = chartGraphics.image.getGraphics();
graphics.setColor(Color.white);
graphics.fillRect(0,0,imageWidth,imageHeight);
graphics.setColor(Color.red);
graphics.drawRect(X+1*columnWidth, columnHeight-h1, columnWidth, h1);
graphics.drawRect(X+2*columnWidth, columnHeight-h2, columnWidth, h2);