【发布时间】:2015-03-19 20:05:00
【问题描述】:
我找不到从 Db 获取 blob 图像并使用 jsp 显示在 img 标签中的解决方案。我尝试如下代码,
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*"%>
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>
<table border=1>
<%
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection connection =DriverManager.getConnection("jdbc:mysql://localhost:3306/raptor1_5","root","");
Statement st=connection.createStatement();
ResultSet rst = st.executeQuery("select * from contacts");
while(rst.next())
{
Blob image = rst.getBlob("Images");
byte[ ] imgData = null ;
imgData = image.getBytes(1,(int)image.length());
String answer = rst.getString("Answers");
//response.setContentType("image/gif");
//OutputStream o = response.getOutputStream();
%>
<tr>
<td><img src="<%=imgData %>" alt="images Here" width="130px" height="90px"></td>
<td><%=answer %></td>
</tr>
<%}
}
catch(Exception e)
{
e.printStackTrace();
}
%>
</table>
</body>
</html>
我尝试了很多问题,例如从<img> 中的 DB 中检索 blob 文件,但我不明白如何显示。所以请有人告诉我如何使用 jsp 动态获取 <img> 标记中的 blob 图像。
希望有人能帮帮我..!
【问题讨论】: