欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-08-13 22:09:36
1、jsp  test 2、controller @requestmappi...

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