我知道从 img 标签 src 调用 servlet 的 doPost 方法没有任何意义:
<img src='/ServletName' alt=''/>// i know it will call doGet or service method but i can't use these.
那么有没有办法从html的img标签调用doPost方法并在img标签中显示图像?
实际上我的 doPost 方法响应类型是:
response.setContentType("image/jpeg");
我也无法将图像存储在服务器的磁盘上。