我已将图片写入httpresponse
,我为图片定义了contentType
。
response.getOutputStream().write(imageBytes);
response.getOutputStream().flush();
在jsp中显示此图像的语法是什么?
答案 0 :(得分:0)
您可以使用base64
编码。为此,您需要在服务器端将其编码为base64,并将其作为 -
<img src="data:png;base64,base64_encoded_image_here">
当然,png可以用适当的mime_type替换。不足之处在于图像将成为HTML内容的一部分。但是此图像不会有单独的HTTP请求。