首页 >web前端 >html教程 >java 返回图片到页面_html/css_WEB-ITnose

java 返回图片到页面_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-24 11:48:011522浏览

@RequestMapping(value = "/image/get")
    public void getImage(HttpServletRequest request,HttpServletResponse response) {
        FileInputStream fis = null;
        response.setContentType("image/gif");
        try {
            OutputStream out = response.getOutputStream();
            File file = new File("D:"+File.separator+"timg.jpg");
            fis = new FileInputStream(file);
            byte[] b = new byte[fis.available()];
            fis.read(b);
            out.write(b);
            out.flush();
        } catch (Exception e) {
             e.printStackTrace();
        } finally {
            if (fis != null) {
                try {
                   fis.close();
                } catch (IOException e) {
                e.printStackTrace();
            }   
              }
        }
    }

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn