博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
img显示从数据库取出blob字段
阅读量:6271 次
发布时间:2019-06-22

本文共 782 字,大约阅读时间需要 2 分钟。

@RequestMapping("/getPictureForpeople") public void getPictureForpeople(HttpServletRequest request, HttpServletResponse response) throws IOException, SQLException {
Connection conn = null; conn = GetJDBCConnection.getJDBCConnection(); Statement stmt = conn.createStatement(); String getPicSQL = "select header from lc0039999.idmidentityinfo where code = 'houzt'"; ResultSet rs = stmt.executeQuery(getPicSQL); Blob img=null; if(rs.next()) {
img = rs.getBlob("header"); } long size=img.length(); byte[] bs=img.getBytes(1, (int)size); // response.setContentType("image/jpeg"); ServletOutputStream outs=response.getOutputStream(); outs.write(bs); outs.flush(); }

转载于:https://www.cnblogs.com/zhanchigaofei/p/6952389.html

你可能感兴趣的文章
java 项目相关 学习笔记
查看>>
numpy opencv matlab eigen SVD结果对比
查看>>
WPF获取某控件的位置,也就是偏移量
查看>>
Boost C++ 库 中文教程(全)
查看>>
solr查询优化(实践了一下效果比较明显)
查看>>
jdk目录详解及其使用方法
查看>>
说说自己对RESTful API的理解s
查看>>
通过layout实现可拖拽自动排序的UICollectionView
查看>>
服务器错误码
查看>>
javascript中的面向对象
查看>>
Splunk作为日志分析平台与Ossec进行联动
查看>>
yaffs文件系统
查看>>
Mysql存储过程
查看>>
NC营改增
查看>>
Lua
查看>>
Mysql备份系列(3)--innobackupex备份mysql大数据(全量+增量)操作记录
查看>>
postgresql 获取刚刚插入的数据主键id
查看>>
C# Activex开发、打包、签名、发布 C# Activex开发、打包、签名、发布 [转]
查看>>
05-Vue入门系列之Vue实例详解与生命周期
查看>>
验证码展示
查看>>