gpt4 book ai didi

java - 在JSP中显示图像(html)

转载 作者:行者123 更新时间:2023-12-01 13:10:21 25 4
gpt4 key购买 nike

我在 JSP 类中显示图像时遇到了非常意外的困难。我已将图像放入此文件夹中:C:\Users\jacob\workspace2\BuildRoomClientProject\WebContent\img 。当我使用<img src="img/lund.png" height="50" width="50">时图像不会显示,就像 Eclipse 找不到任何名为 lund.png 的图片一样。我做错了什么?

这是我的JSP 代码:

<%@ page contentType="text/html;charset=windows-1252"%> 

<%@ page import = "org.ics.ejb.Building" %>
<%@ page import = "org.ics.ejb.Room" %>
<%@ page import = "org.ics.ejb.RoomId" %>
<%@ page import = "java.util.List" %>
<%@ page import = "java.util.Iterator" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>
Show Rooms
</title>
</head>
<body bgcolor="Pink">
<h2>
Rooms:
</h2>

<%List<Room> r = (List<Room>)request.getAttribute("rooms"); %>
<% for (Room r1 : r){
out.println(r1.getBname() + " " + r1.getId().getrcode());
}%>

<p>
</p>

<form action="/BuildRoomClientProject/TestClientServlet" method="post">
<input type="submit" name="submit" value="Tillbaka">
<input name="operation" value="searchbuilding" type="hidden">
</form>
<img src="img/lund.png" height="50" width="50">
</body>
</html>

最佳答案

在与 WEB-INF 文件夹平行的 webapp 文件夹下创建一个文件夹 img,并将图像 lund.png 放在那里。

WebContent
|
|__abc.jsp
|__WEB-INF
|__img
|
|__lund.png
<小时/>

尝试使用简单的 jsp 文件,如下所示:

<%@ page contentType="text/html;charset=windows-1252"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Show Rooms</title>
</head>
<body bgcolor="Pink">
<img src="img/lund.png" height="50" width="50">
</body>
</html>

关于java - 在JSP中显示图像(html),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22922301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com