主页 > 知识库 > img的src地址是一个请求的方式来显示图片方法

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

热门标签:Linux服务器 科大讯飞语音识别系统 团购网站 电子围栏 阿里云 Mysql连接数设置 银行业务 服务器配置

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地址是一个请求的方式来显示图片方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
  • JSP结合js实现img中src更新请求的方法

标签:大理 广元 衡水 衢州 蚌埠 枣庄 萍乡 江苏

巨人网络通讯声明:本文标题《img的src地址是一个请求的方式来显示图片方法》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266