你是否曾經想過從jsp頁面(或者servlet)中發送動態產生的映像?這篇技巧告訴你如何做。要運行這裡的代碼,你需要一個Tomcat或者其他支援JSP 1.1的web伺服器。
當一個web頁面帶有image/jpeg (或者其他的映像格式)的MIME類型被發送時,你的瀏覽器將那個返回結果當作一個映像,然後瀏覽器顯示映像,作為頁面的一部分或者完全作為映像自身。要為你的jsp版面設定MIME類型,你需要設定頁面的contentType屬性:
然後你需要建立一個BufferedImage繪製你的生動影像:
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
建立完一個BufferedImage後,你需要得到圖形環境進行繪製,一個Graphics或者Graphics2D對象:
<table cellSpacing=0 borderColorDark=#ffffff cellPadding=2 width=400 align=center borderColorLight=black border=1>
<tr> <td class=code style="FONT-SIZE: 9pt" bgColor=#e6e6e6>
Graphics g = image.getGraphics();
// or
Graphics2d g2d = image.createGraphics();</td></tr>
</table>
從現在起你就可以繪製映像內容了。對圖形環境繪製就會畫到BufferedImage。最開始這個映像都是黑色的,因此用你希望的背景顏色填充映像是一個不錯的主意,然後,當你完成映像的繪製,你需要dispose圖形環境:
<table cellSpacing=0 borderColorDark=#ffffff cellPadding=2 width=400 align=center borderColorLight=black border=1>
<tr> <td class=code style="FONT-SIZE: 9pt" bgColor=#e6e6e6>
g.dispose();
// or
g2d.dispose();</td></tr>
</table>
一旦完成映像的繪製,你在response中返回那個映像。你可以使用非標準的com.sun.image.codec.jpeg包中的JPEGImageEncoder類編碼映像,或者如果你使用JDK1.4,你可以使用標準的ImageIO類。在使用JPEGImageEncoder時有一個技巧,你必須從ServletResponse取來ServletOutputStream而不能使用隱含的JSP輸出變數out。
<table cellSpacing=0 borderColorDark=#ffffff cellPadding=2 width=400 align=center borderColorLight=black border=1>
<tr> <td class=code style="FONT-SIZE: 9pt" bgColor=#e6e6e6>
ServletOutputStream sos = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sos);
encoder.encode(image);
// or
ImageIO.write(image, "JPEG", out);</td></tr>
</table>