[转] img的src通过请求的方式来显示图片

xiaoxiao2021-02-27  228

原文链接:http://blog.csdn.net/kouwoo/article/details/50015693

1.jsp

[html]  view plain  copy  print ? <img alt="test" src="getImg2.do">  

2.controller

[java]  view plain  copy  print ? @RequestMapping("getImg2")   public void getImg2(HttpServletRequest request, HttpServletResponse response)           throws IOException {       FileInputStream fis = null;       OutputStream os = null;       try {           fis = new FileInputStream("d:/log.png");           os = response.getOutputStream();           int count = 0;           byte[] buffer = new byte[1024 * 8];           while ((count = fis.read(buffer)) != -1) {               os.write(buffer, 0, count);               os.flush();           }       } catch (Exception e) {           e.printStackTrace();       } finally {           try {               fis.close();               os.close();           } catch (IOException e) {               e.printStackTrace();           }       }   }  

转载请注明原文地址: https://www.6miu.com/read-11365.html

最新回复(0)