从servlet输出图像文件

从servlet输出图像文件

本文介绍了从servlet输出图像文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将存储在硬盘上的图像提供给servlet?

例如:

我在路径'Images / button.png'我希望在一个servlet中使用URL file / button.png 提供此服务。

How to serve an image, stored on my hard drive, in a servlet?
For Example:
I have an image stored in path 'Images/button.png' and I want to serve this in a servlet with the URL file/button.png.

推荐答案


  • 将servlet映射到 / file url-模式

  • 从磁盘读取文件

  • 将其写入 response.getOutputStream()

  • Content-Type 标头设置为 image / png (如果是只有pngs)

    • map a servlet to the /file url-pattern
    • read the file from disk
    • write it to response.getOutputStream()
    • set the Content-Type header to image/png (if it is only pngs)
    • 这篇关于从servlet输出图像文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 05:07