图片未显示在 JSP 中?
Image not showing in JSP?
我有简单的 JSP 网页,但没有显示图像
这是我的 JSP 页面,它将从网页内容下的图片文件夹中获取图像
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<img width = "80" src="${pageContext.request.contextPath}/pics/">
</body>
</html>
但是页面是这样的
首先尝试使用 ${pageContext.request.contextPath} 输出:确保它位于您期望的 /pics/ 文件夹所在的位置
下一个 de 路径应该正确映射:例如在 context.xml 中 tomcat
<Context path="/media/pics" docBase="C:/data/pics" debug="0" privileged="true">
</Context>
额外提示:
看一下
Mapping a directory outside the web-app to URL in TOMCAT
始终将您的媒体文件与 tomcat 文件夹分开
你的代码应该有点像
<img width = "80%" src="${pageContext.request.contextPath}/pics/imagename.jpg">
文件名是必需的,并且将 80% 更改为 80%,因为您的图像可能太大并且可能只显示它的一部分
还要确保
${pageContext.request.contextPath}
不为空
并且绝对确定
<img width = "80%" src="check_with_original_directory/pics/imagename.jpg">
我有简单的 JSP 网页,但没有显示图像
这是我的 JSP 页面,它将从网页内容下的图片文件夹中获取图像
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<img width = "80" src="${pageContext.request.contextPath}/pics/">
</body>
</html>
但是页面是这样的
首先尝试使用 ${pageContext.request.contextPath} 输出:确保它位于您期望的 /pics/ 文件夹所在的位置
下一个 de 路径应该正确映射:例如在 context.xml 中 tomcat
<Context path="/media/pics" docBase="C:/data/pics" debug="0" privileged="true">
</Context>
额外提示: 看一下 Mapping a directory outside the web-app to URL in TOMCAT
始终将您的媒体文件与 tomcat 文件夹分开
你的代码应该有点像
<img width = "80%" src="${pageContext.request.contextPath}/pics/imagename.jpg">
文件名是必需的,并且将 80% 更改为 80%,因为您的图像可能太大并且可能只显示它的一部分
还要确保
${pageContext.request.contextPath}
不为空
并且绝对确定
<img width = "80%" src="check_with_original_directory/pics/imagename.jpg">