使用 HttpServletRequest 获取请求发送者的 URL

发布于 2024-12-01 21:56:19 字数 58 浏览 1 评论 0原文

如何使用 HttpServletRequest 获取源域? 源域是请求者的域。

谢谢。

How do you get the source domain using HttpServletRequest?
Source domain is the requester's domain.

Thanks.

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

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

发布评论

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

评论(3

久光 2024-12-08 21:56:19

你可以做

// gets client (browser)'s hostname
String host = request.getRemoteHost(); 

或者

// get the server's domain name.
String domain = new URL(request.getRequestURL().toString()).getHost(); 

You could do either

// gets client (browser)'s hostname
String host = request.getRemoteHost(); 

OR

// get the server's domain name.
String domain = new URL(request.getRequestURL().toString()).getHost(); 
雨轻弹 2024-12-08 21:56:19

要获取源域,您可以使用 request.getHeader("origin")
特别是当请求必须通过代理服务器时。

To get the source domain you can use request.getHeader("origin")
especially if the requests have to pass through a proxy server.

随波逐流 2024-12-08 21:56:19

主机名请求

InetAddress ip = InetAddress.getLocalHost();
String hostname = ip.getHostName();
out.print("Your current IP address : " + ip+"\n");
out.print("Your current Hostname : " + hostname);

Hostname request

InetAddress ip = InetAddress.getLocalHost();
String hostname = ip.getHostName();
out.print("Your current IP address : " + ip+"\n");
out.print("Your current Hostname : " + hostname);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文