本文介绍了从 servlet 输出图像文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 servlet 中提供存储在硬盘驱动器上的图像?
例如:
我有一个图像存储在路径 'Images/button.png'
中,我想在一个带有 URL file/button.png
的 servlet 中提供它.
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-pattern - 从磁盘读取文件
- 将其写入
response.getOutputStream()
- 将
Content-Type
标头设置为image/png
(如果它只是 png) - map a servlet to the
/file
url-pattern - read the file from disk
- write it to
response.getOutputStream()
- set the
Content-Type
header toimage/png
(if it is only pngs)
这篇关于从 servlet 输出图像文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!