国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

從數(shù)據(jù)庫(kù)讀出的JPG文件的字符流,轉(zhuǎn)換成圖片顯示在頁(yè)面上的相關(guān)代碼

2019-11-18 13:54:35
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

  從數(shù)據(jù)庫(kù)讀出的JPG文件的字符流,轉(zhuǎn)換成圖片顯示在頁(yè)面上的相關(guān)代碼

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() + "<br>");
}

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() + "<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();
}

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 徐汇区| 蒲江县| 东莞市| 龙岩市| 罗平县| 赞皇县| 寿宁县| 巴彦县| 永济市| 承德市| 黑龙江省| 东明县| 吉安市| 鄄城县| 鹰潭市| 枣强县| 霸州市| 眉山市| 沂南县| 房产| 巫山县| 阳高县| 南阳市| 沙河市| 即墨市| 商城县| 临澧县| 香格里拉县| 任丘市| 盐池县| 黔西| 家居| 紫金县| 曲麻莱县| 江源县| 霍州市| 施秉县| 大石桥市| 荔波县| 扎鲁特旗| 息烽县|