Java:从 Java 类返回相对 URL?

发布于 2025-01-08 06:24:45 字数 511 浏览 0 评论 0原文

我有一些图像存储在 /images 中,问题是我希望从类中返回这样的 url。

/images/test.png

问题是,在我的开发机器中,我的网址采用 的形式

http://localhost/myApp

,在生产中,它的形式是,

http://www.mysite.com

所以我不能只返回 /images,因为这在开发机器上不起作用

我想我正在尝试做什么在Java中与JSTL标签相同

<c:url

所以当我在我的开发机器中时它会返回

/myApp/images/test.png

并且在生产中

/images/test.png

有人可以帮忙吗?

提前致谢

I have some images stored in /images the problem is that i wish to return a url like so from a class.

/images/test.png

The problem is that in my development machine my url is in the form of

http://localhost/myApp

and in production its in the form of

http://www.mysite.com

so i can't just return /images as this doesn't work on the development machine

I suppose what i am trying to do in Java is the same as teh JSTL tag does

<c:url

So when i am in my development machine it would return

/myApp/images/test.png

and in production

/images/test.png

can anyone help?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↙厌世 2025-01-15 06:24:45
${request.contextPath}/images/foo

您可能正在寻找 上下文路径

${request.contextPath}/images/foo

You're probably looking for the context path.

不即不离 2025-01-15 06:24:45

您需要在 ServletRequest 上使用 getContextPath() 方法 - 然后附加路径的其余部分:

String url = request.getContextPath() + "/images/test.png";

You need to use getContextPath() method on the ServletRequest - and then append the rest of your path:

String url = request.getContextPath() + "/images/test.png";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文