java中字servlet在数据库中取到的图片二进制流怎么显示在jsp页面上的table中

DataBaseManegerdata=null;Connectionconn=null;PreparedStatementps=null;ResultSetrs=nul... DataBaseManeger data = null;
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
Statement stmt = null;
ServletOutputStream op = null;
InputStream in = null;
public ServletOutputStream getTitlePic(HttpServletResponse response) throws ServletException, IOException {
conn = data.getDataBaseManeger().getConnection();
String sql = "select ftitlepic from tnews ORDER BY FNEWSDATE DESC limit 1";
try {
stmt = conn.createStatement();
rs = stmt.executeQuery(sql);
response.reset();
if (rs.next()) {
in = rs.getBinaryStream("ftitlepic");
op = response.getOutputStream();
int len;
byte[] buf = new byte[88888888];
while ((len = in.read(buf)) != -1) {
op.write(buf, 0, len);
}
op.flush();
}
}catch (SQLException e) {
e.printStackTrace();
}finally{
try{
op.close();
}catch(Exception ex){
ex.printStackTrace();
}finally{
try {
in.close();
} catch (Exception ex) {
ex.printStackTrace();
}

}
}
closeConn();
return op;
}

public void closeConn(){
try {
rs.close();
} catch (Exception ex) {
ex.printStackTrace();
} finally {
try {
stmt.close();
} catch (Exception ex) {
ex.printStackTrace();
} finally {
try {
conn.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
}

怎么把字节流数组传到jsp前台页面的table中td里面的Img表现上并显示
因为我将图片取出来显示了,但是我jsp页面上的其他东西都不显示了
就一张字节流生成的图片!
展开
 我来答
guanmi529
2011-06-04 · TA获得超过159个赞
知道小有建树答主
回答量:122
采纳率:0%
帮助的人:0
展开全部
你用过那个验证码吗?这也是一张图片,你那个severlet只要读这个图片。用write,你方法返回为空。然后,那个页面<img src="访问serverlet的地址"/>就可以了
更多追问追答
追问
但是页面时首页 登陆后跳转到这个页面
不调用其中的方法
追答
你怎么访问这个方法,你就在。明白吗?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式