blob格式照片在前端页面的显示

blob格式照片在前端页面的显示
可用img 标签的src请求后台servlet,servlet部分代码如下:

response.setContentType( "image/gif "); //如果是gif的图片
int len=blob.length(); //blob为从数据库中读取的blob,如:rs.getBob(0);
byte[] image=blob.getBytes(1,len);
OutputStream out=response.getOutputStream();
out.write(image);
out.flush();

猜你喜欢

转载自blog.csdn.net/weixin_45684562/article/details/105926045
今日推荐