我试图在 jsp 页面中显示图像和其他内容,但是我继续单独获取图像。我不知道为什么这是来自我的 servlet 的代码:
if(profile.getAvatar()!=null){
ServletContext sc = getServletContext();
String filename= sc.getRealPath("img/no_avatar.png");
String contentType = sc.getMimeType(filename);
response.setContentType(contentType);
File file = new File(filename);
response.setContentLength((int)file.length());
FileInputStream in = new FileInputStream(file);
OutputStream out = response.getOutputStream();
request.setAttribute("in", in);
byte[] buffer =new byte[1024];
int count;
while((count = in.read(buffer)) >= 0)
{
out.write(buffer,0,count);
}
out.flush();
}
这是来自我的jsp:
<input type="image" name="avatar" id="avatar"src="img/no_avatar.png" />
请帮助我,希望尽快收到大家的回复。
提前致谢 (: