public void doPost(HttpServletRequest req, HttpServletResponse res) String ls_sql = null; ——————————————————————————– 再附一个: 从库中读图片显示到页面上的主要源码
throws ServletException, IOException {
ServletOutputStream out = res.getOutputStream();
Statement dispStmt = null, setStmt = null;
try {
dispStmt = Con.createStatement();
setStmt = Con.createStatement();
setStmt.executeUpdate(“set textsize 2048000”);
} catch (Exception e) {
out.println(“Create Statement error:” + e.toString() + “<br>”);
}
ls_sql = req.getParameter(“ImageSQL”);
if (ls_sql == null)
ls_sql = “”;
ls_sql = ls_sql.trim();
if (!ls_sql.equals(“”)) {
ResultSet rs = null;
try {
rs = dispStmt.executeQuery(ls_sql);
} catch (Exception e) {
System.out.println(
“Unable to Exec Statment” + e.toString() + “<br>”);
}
try {
while (rs.next()) {
try {
res.setContentType(“image/jpeg”);
InputStream is = rs.getBinaryStream(1);
int size = is.available();
byte[] bzp = new byte[size];
is.read(bzp);
out.write(bzp);
} catch (Exception e) {
System.out.println(“Wirte image error: ” + e.toString());
}
}
rs.close();
} catch (Exception e) {
System.out.println(“Unable to Close Statment” + e.toString());
}
}
try {
dispStmt.close();
} catch (Exception e) {
System.out.println(“Close Statement Error: ” + e.toString());
}
out.close();
}
<%@ page contentType=”text/html;charset=iso8859_1″%>
<%@ page import=”java.sql.ResultSet”%>
<jsp:useBean id=”query” class=”pub.MakeDB”/>
<%
String sql = “select * from images”;
ResultSet rs = query.executeQuery(sql);
rs.next();
InputStream in = rs.getBinaryStream(“image”);
ServletOutputStream sos = response.getOutputStream();
int len = 0;
byte[] b = new byte[1024];
response.reset();
response.setContentType(“image/gif”);
while((len = in.read(b)) > 0)
sos.write(b,0,len);
in.close();
sos.close();
query.cls();
%>
如果是写到文件只要把sos
定义为DataOutputStream sos = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(“/a.gif”)));
从数据库读出的jpg文件的字符流,转换成图片显示在页面上的相关代码_jsp技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 从数据库读出的jpg文件的字符流,转换成图片显示在页面上的相关代码_jsp技巧
相关推荐
-      通过jdbc连接oracle的十大灵活技术_jsp技巧
-      jdbc之代码重复使用_jsp技巧
-      提升jsp页面响应速度的七大秘籍绝招_jsp技巧
-      jdbc连sql server数据库步骤及有一项操作已被挂起,需重新启动计算机解决办法_jsp技巧
-      解决jsp中使用request乱码问题_jsp技巧
-      详细的jsp分页(oracle+jsp+apache)_jsp技巧
-      jsp中与标签要用不同的方式获得数据库中的数据_jsp技巧
-      jsp2.0新特性_jsp文摘