zoukankan      html  css  js  c++  java
  • java 返回图片到页面

    @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();
                }   
                  }
            }
        }
  • 相关阅读:
    Sightseeing,题解
    A Simple Problem,题解
    城池攻占,题解
    传递,题解
    How many ways??,题解
    Least Cost Bracket Sequence,题解
    Evacuation,题解
    Tallest Cow,题解
    容易题,题解
    无题Ⅱ,题解
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/7054719.html
Copyright © 2011-2022 走看看