从服务器中读取图片至页面中
Posted shouyaya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从服务器中读取图片至页面中相关的知识,希望对你有一定的参考价值。
图片的数据数据库中存储:
else if ("/cake/getImg.do".equals(req.getServletPath())) { String idStr = req.getParameter("id"); Cake cake = cakeService.getCakeImg(Long.valueOf(idStr)); //通过Mybatis获取图片的数据,封装在cake这个类中 try { resp.setContentType("multipart/form-data"); if (null != cake && null != cake.getSmallImg()) { InputStream in = new ByteArrayInputStream(cake.getSmallImg()); ServletOutputStream out = resp.getOutputStream(); byte[] b = new byte[1024]; int length = in.read(b); while (length != -1) { out.write(b); length = in.read(b); } out.flush(); out.close(); in.close();resp.flushBuffer(); } } catch (IOException e) { e.printStackTrace(); } } }
以上是关于从服务器中读取图片至页面中的主要内容,如果未能解决你的问题,请参考以下文章