为了账号安全,请及时绑定邮箱和手机立即绑定

服务器读取图片到jsp显示问题

服务器读取图片到jsp显示问题

泛舟湖上清波郎朗 2019-03-21 18:15:19
我要从服务器读个图片显示到jspjsp页面<img src="getPic.do"> 后台@RequestMapping(value = "getPic", method = RequestMethod.GET)    public void getPic(HttpServletRequest request,HttpServletResponse response) throws Exception {        response.setContentType("img/png");          response.setCharacterEncoding("utf-8");          WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();            ServletContext servletContext =    webApplicationContext.getServletContext();             String path =  servletContext.getRealPath("Wopop_files/1.png");            FileInputStream fis = null;            File file = new File(path);            fis =  new FileInputStream(file);            byte[] b = new byte[fis.available()];            fis.read(b);            OutputStream out = response.getOutputStream();           out.write(b);          out.flush();                }        图片没显示,请求之后倒是下载了个getPic.DO文件,咋回事啊。。
查看完整描述

1 回答

?
汪汪一只猫

TA贡献1898条经验 获得超8个赞

response.setContentType("image/png");


查看完整回答
反对 回复 2019-04-24
  • 1 回答
  • 0 关注
  • 461 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信