从服务器中读取图片至页面中

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

 

以上是关于从服务器中读取图片至页面中的主要内容,如果未能解决你的问题,请参考以下文章

如何通过单击适配器类中代码的项目中的删除按钮来删除列表视图中的项目后重新加载片段?

php Cakephp3.1中代码为304的页面响应

Java Servlet图片上传至指定文件夹并显示图片

扩大 rmarkdown html 中代码的输出

vue页面传值能传图片吗

Tutorial中代码的区别及不同效果