电光石火-穿越时空电光石火-穿越时空


spring mvc 返回图片的请求

功能分析:

要使用Spring MVC来处理返回一个图片的请求。这个跟servlet返回的实现是一样的。

代码如下:

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

本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => spring mvc 返回图片的请求
本文地址:http://ilkhome.cn/index.php/archives/191/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 spring mvc 返回图片的请求,谢谢。

评论