图像不显示在jsp内的html中

时间:2016-09-12 09:28:38

标签: eclipse jsp tomcat java-ee

我正在尝试在JSP脚本中以html显示图像,只使用 img 标记。

index.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">
</head>
<body>
<div id="topbar">
    <img src="images/x.png" alt="img" height="30" width="25">
</div>
</body>
</html>

我使用eclipse neon(Ubuntu中的apache-tomcat本地服务器),我的目录结构是:

enter image description here

当我运行 index.jsp 时,不会显示图片。我做错了什么?

如果您需要更多信息,请询问我。

1 个答案:

答案 0 :(得分:0)

@ user3138997给了我提示:

我只需写作:

<img src="/projectName/images/x.png" alt="img" height="30" width="25">

这显示了图像。