显示响应中的图像

时间:2014-07-16 17:09:19

标签: java image jsp spring-mvc httpresponse

我已将图片写入httpresponse,我为图片定义了contentType

response.getOutputStream().write(imageBytes);
response.getOutputStream().flush();

在jsp中显示此图像的语法是什么?

1 个答案:

答案 0 :(得分:0)

您可以使用base64编码。为此,您需要在服务器端将其编码为base64,并将其作为 -

嵌入客户端
<img src="data:png;base64,base64_encoded_image_here"> 

当然,png可以用适当的mime_type替换。不足之处在于图像将成为HTML内容的一部分。但是此图像不会有单独的HTTP请求。