ADF 应用程序中的 IP 地址和浏览器信息
如何在 ADF 中检索用户的 IP 地址和浏览器信息。我无法在 ADFContext 中找到它。
How to retrieve IPAddress and browser information of user in ADF. I am not able to find this in ADFContext.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ADFContext 有一个子类 ServletADFContext,它应该允许您访问 HTTPRequest,您应该能够访问
request.getHeader("user-agent")
IP 地址:request.getRemoteAddr()
浏览器:request.getHeader("user-agent" )
希望这有帮助
From ADFContext has a subclass ServletADFContext which should give you access to HTTPRequest which you should be able to get to
request.getHeader("user-agent")
IP Address: request.getRemoteAddr()
Browser: request.getHeader("user-agent")
hope this helps