如何在jsp页面中显示bufferedimage?

时间:2011-01-08 10:30:33

标签: java jsp bufferedimage

海派, 我有一个java页面,里面有一个缓冲图像。我想将这个缓冲的图像传递到jsp页面,我想在那里显示它。伙计们请帮我做。我是java的新手。所以用简单的代码帮我。 提前谢谢。

2 个答案:

答案 0 :(得分:2)

  1. 您可以将缓冲图像写入某个公共网站空间,并在img标记中提供src

  2. 提供src作为servlet并直接从servlet输出图像

  3. 另见

答案 1 :(得分:2)

以下是from this post的示例程序。它工作正常。

<%@page import="java.awt.image.BufferedImage"%>
<%@page import="javax.imageio.ImageIO"%>
<%@page import="java.io.*"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
BufferedImage bImage = ImageIO.read(new File("/home/visruth/Desktop/Visruth.jpg"));//give the path of an image
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write( bImage, "jpg", baos );
baos.flush();
byte[] imageInByteArray = baos.toByteArray();
baos.close();
String b64 = javax.xml.bind.DatatypeConverter.printBase64Binary(imageInByteArray);
%>

<div>
    <p>As of v6, Java SE provides JAXB</p>
    <img src="data:image/jpg;base64, <%=b64%>" alt="Visruth.jpg not found" />
</div>          
</body>
</html>