如果不能显示图片,很有可能是src后的路径问题,下面是可以显示图片的new.jsp文件
new.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Insert title here</title> </head> <body> <% String path = request.getContextPath(); out.println(path); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; out.println(basePath); %> <img src="http://localhost:8080/web05_session/1.jpg" width=200 height=100 /> <%--下面这种方法也可以 --%> <%--<img src="<%=basePath%>1.jpg" /> --%> </body> </html>
下面是我的项目目录结构: