当前位置: 技术问答>java相关
如何在浏览器中显示ORACLE数据库中存在BLOB字段中的图形?
来源: 互联网 发布时间:2015-09-10
本文导语: 我按照在搜索出来的以前的帖子上所说的写JSP,但是无法显示图形? 是不是在WEBLOGIC上需要特殊配置过?? 以下是我的代码: content.htm: this is a test . showcontent.jsp: | //... if (rs.ne...
我按照在搜索出来的以前的帖子上所说的写JSP,但是无法显示图形?
是不是在WEBLOGIC上需要特殊配置过??
以下是我的代码:
content.htm:
this is a test .
showcontent.jsp:
是不是在WEBLOGIC上需要特殊配置过??
以下是我的代码:
content.htm:
this is a test .
showcontent.jsp:
|
//...
if (rs.next()) {
byte [] buf = null;
buf = rs.getBytes("data");
response.setContentType(image/jpeg");
OutputStream outputStream = response.getOutputStream();
outputStream.write(buf);
outputStream.flush();
}
//...
if (rs.next()) {
byte [] buf = null;
buf = rs.getBytes("data");
response.setContentType(image/jpeg");
OutputStream outputStream = response.getOutputStream();
outputStream.write(buf);
outputStream.flush();
}
//...