首页 > 编程 > JSP > 正文

JSP显示图片问题的解决

2024-09-05 00:20:20
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,

  前提:使用jsp显示图片。图片的存储位置在数据库中。

  方法:用jdbc连接数据库,从数据库读出数据,用输出流输出到页面。

</%@ page contenttype="text/html" language="java" /%>
</%@ page buffer="16kb" /%>
</%@ page import="java.sql.*"/%>
</%@ page import="java.io.*"%>
 </% int len = 10 * 1024 * 1024;
class.forname("oracle.jdbc.driver.oracledriver").newinstance();
string url="jdbc:oracle:thin:@10.168.8.99:1521:orafy"; //orcl为你的数据库的sid string user="lhzy";
 string password="qwertyuiop";
connection conn= drivermanager.getconnection(url,user,password);
statement stmt=conn.createstatement(resultset.type_scroll_sensitive,resultset.concur_updatable);
string sql="select pic from test";
resultset rs=stmt.executequery(sql); //定位到记录 rs.next();
inputstream in = rs.getbinarystream(1);//①
response.reset(); //返回在流中被标记过的位置
response.setcontenttype("image/jpg"); //或gif等 //得到输入流
outputstream toclient = response.getoutputstream();//②
byte[] p_buf = new byte[len];
 int i;
while ((i = in.read(p_buf)) != -1)
{
toclient.write(p_buf, 0, i);
} in.close();
toclient.flush(); //强制清出缓冲区
toclient.close();//②
/%>
</% rs.close();
stmt.close();
conn.close(); /%>

  需要注意的地方:

  需要注意的有两个方面:①处的代码如注意的是,在去记录前要先调用next()函数,定位到第一个记录,记录中列的索引是从1开始的,不是从0开始。 ②处如果出错,检查是不是忘记写流的关闭了。就是下面的那句。原因可能是,在其它的地方也调用了response.getoutputstread()。如果不关闭,这个调用是不能成功的。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表