我在一个字节数组中有一个图像的内容,在一个jetty servlet类中。如何在浏览器中显示此图像?
答案 0 :(得分:2)
你的servlet中会有类似的内容
答案 1 :(得分:1)
此代码有效。感谢“David Hofmann”。
//data is the content of the image in binary
response.setContentType("image/jpg");// or png or gif, etc
response.setContentLength(data.length);
response.getOutputStream().write(data);