欢迎来到天天文库
浏览记录
ID:34757011
大小:66.18 KB
页数:3页
时间:2019-03-10
《如何在jsp中读取存入blob字段的图像文件和文本文件》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、·问题内容:如何在jsp中读取存入blob字段的图像文件和文本文件·原讨论链接:http://community.csdn.net/expert/topicview1.asp?id=1141110·所属论坛:基础和管理 审核组:其他数据库开发·提问者:stailong 解决者:chooser·感谢:chooser、peanz·关键字:·答案:各位大侠,我在oracle数据库的表字段blob中存入了一个图像,现在需要通过jsp和数据库的连接把它给调出来,可不知如何调用,据说要用到读取Stream来实现,哪位好心的大哥能告诉我具体的实现方
2、法吗,谢谢!---------------------------------------------------------------我不在单位,所以没法帖程序。大致思路是,用SERVLETselect到一个resultset中,然后用rs.getBinaryStream取得流,然后对这个Stream 作read,而且最好是循环读,直到return -1;表示读完了流,这样得到一个字节(byte)数组,再对respond设置contentType为image/*,然后把字节数组写到respond中,即可。然后用JSP调此SERVLET
3、,结束。如有兴趣,星期一贴程序。---------------------------------------------------------------希望有点帮助import javax.servlet.*;import javax.servlet.http.*;import java.io.*;import java.util.*;public class Servlet1 extends HttpServlet { static final private String CONTENT_TYPE = "image/jpe
4、g"; public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType(CONTENT_TYPE); OutputStream out = response.getOutputStream(); FileInputStream fis = new FileInputStream("
5、e:\aaa.jpg"); int b = fis.read(); while(b!=-1){ out.write(b); b = fis.read(); } fis.close(); } protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws javax.servlet.ServletException, java.io.IO
6、Exception { doGet(req,resp); } protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws javax.servlet.ServletException, java.io.IOException { doGet(req,resp); }}楼上说得差不离了,我记得程序好像就是 int b = fis.read(); while(b!=-1){
7、 out.write(b); b = fis.read(); } fis.flush();//最好有这步 fis.close();我来了,我省去了建立数据库连接的部分: String sql = "select picture from tmp_pic where id=1"; Statement stmt = null; ResultSet rs = null; try { s
8、tmt = conn.createStatement(); rs = stmt.executeQuery(sql); } catch (SQLExcepti
此文档下载收益归作者所有