0
我在碼頭servlet類中的字節數組中具有圖像內容。我怎麼能在瀏覽器中顯示這個圖像?
從字節數組中使用碼頭web服務器顯示圖像
我在碼頭servlet類中的字節數組中具有圖像內容。我怎麼能在瀏覽器中顯示這個圖像?
從字節數組中使用碼頭web服務器顯示圖像
您將有類似這樣的東西你sevlet
byte[] imageBytes = ...
response.setHeader("Content-Type", "image/jpg");// or png or gif, etc
response.setHeader("Content-Length", imageBytes.lenght);
response.getOutputStream().write(imageBytes);
此代碼工作中。感謝「大衛霍夫曼」。
//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);