从数据库读出的JPG文件的字符流,转换成图片显示在页面上的相关代码

文章作者 100test 发表时间 2007:09:15 12:08:23
来源 100Test.Com百考试题网


从数据库读出的JPG文件的字符流,转换成图片显示在页面上的相关代码

public void doPost(HttpServletRequest req, HttpServletResponse res)
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() "
").
}

String ls_sql = null.
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() "
").
}
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().
}



相关文章


从数据库中读出图片并显示的示例代码
从数据库中读取记录集到层叠式XML
一种不使用数据源用java直接连接数据源的方法
J 连接各类数据库大全SQLServer2000JDBC驱动的完整安装及测试
从数据库读出的JPG文件的字符流,转换成图片显示在页面上的相关代码
通过ODBC?JDBC和SQL专用JDBC驱动实现简单的数据
连接SQLserver数据库注意事项
JAVA和.NET两个平台对于安全功能的比较
JVM(Java虚拟机)中进程工作目录讲解
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛