从servlet输出图像文件

时间:2011-12-24 09:17:53

标签: java servlets

如何将存储在硬盘上的图像提供给servlet? 例如:
我有一个存储在路径'Images/button.png'中的图像,我想在一个带有file/button.png的servlet中提供这个图像。

3 个答案:

答案 0 :(得分:50)

以下是工作代码:

 public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {

      ServletContext cntx= req.getServletContext();
      // Get the absolute path of the image
      String filename = cntx.getRealPath("Images/button.png");
      // retrieve mimeType dynamically
      String mime = cntx.getMimeType(filename);
      if (mime == null) {
        resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
        return;
      }

      resp.setContentType(mime);
      File file = new File(filename);
      resp.setContentLength((int)file.length());

      FileInputStream in = new FileInputStream(file);
      OutputStream out = resp.getOutputStream();

      // Copy the contents of the file to the output stream
       byte[] buf = new byte[1024];
       int count = 0;
       while ((count = in.read(buf)) >= 0) {
         out.write(buf, 0, count);
      }
    out.close();
    in.close();

}

答案 1 :(得分:20)

  • 将servlet映射到/file url-pattern
  • 从磁盘读取文件
  • 将其写入response.getOutputStream()
  • Content-Type标题设置为image/png(如果只是png)

答案 2 :(得分:0)

这是另一种非常简单的方法。

File file = new File("imageman.png");
BufferedImage image = ImageIO.read(file);
ImageIO.write(image, "PNG", resp.getOutputStream());