当前位置:主页 > 查看内容

img的src地址是一个请求的方式来显示图片方法

发布时间:2021-04-28 00:00| 位朋友查看

简介:1、jsp img alt="test" src="getImg2.do" 2、controller @RequestMapping("getImg2") public void getImg2(HttpServletRequest request, HttpServletResponse response) throws IOException { FileInputStream fis = null; OutputStream os = null; try { fi……

1、jsp

 <img alt="test" src="getImg2.do">

2、controller

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

以上这篇img的src地址是一个请求的方式来显示图片方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持尊托云数。


本文转载自网络,原文链接:https://m.jb51.net/article/108505.htm
本站部分内容转载于网络,版权归原作者所有,转载之目的在于传播更多优秀技术内容,如有侵权请联系QQ/微信:153890879删除,谢谢!

推荐图文


随机推荐