gpt4 book ai didi

html - JSP调用图片路径的方法

转载 作者:太空宇宙 更新时间:2023-11-04 13:30:10 24 4
gpt4 key购买 nike

我的图片文件夹在 web 文件夹下。完整路径为“web/images/logo1.jpg”。我的 jsp 页面位于 web/WEB-INF/jsp。如何正确查看我的图像?

最佳答案

在指定图像路径时,我们有两种选择:提供绝对路径或相对路径。假设您有一个 webapp ROOT,即您的所有代码都在 webapps/ROOT 中(ROOT 是 TOMCAT 中的默认 webapp,即 webapps/ROOT/first.html 中的文件可以在浏览器上使用 http://example.com:8080/first.html 访问。)

或者如果你有一个 webapp 示例;然后可以使用 http://example.com:8080/example/first.html 访问 webapps/example/first.html

因此,假设您有以下文件 webapps/ROOT/jsp/first.jsp ;和 webapps/ROOT/images/logo1.jpg

在 logo1.jsp 中,您可以按如下方式访问 jpg:

<img src="/images/logo1.jpg" /> (absolute path; because it starts with a slash ; this slash is mapped to the starting directory)
<img src="../images/logo1.jpg" /> (relative path; because it DOES NOT starts with a slash ; you have to give path relative to location of your jsp )

关于html - JSP调用图片路径的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14584066/

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