使用java从服务器端检测浏览器版本

发布于 2024-12-05 10:10:31 字数 127 浏览 0 评论 0原文

我看到很多与浏览器检测、用户代理检测等相关的帖子...我想从服务器端检测版本并基于此发送适当的数据。

我知道浏览器可以使用工具模仿版本,但这对我来说并不重要。

我需要 java 解决方案来进行准确的版本检测。

I saw many posts related to the browser detection, User agent detection etc...I want to detect the version from server side and send appropriate data based on that.

I know browsers can mimic version with tools, but that doesn't matter for me.

I need the java solution for the exact version detection.

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

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

发布评论

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

评论(5

↘紸啶 2024-12-12 10:10:31

以下代码解释了如何使用 user-agent-utils 执行此操作:

String userAgent = req.getHeader("user-agent");
UserAgent ua = UserAgent.parseUserAgentString(userAgent);
Version browserVersion = ua.getBrowserVersion();
String browserName = ua.getBrowser().toString();
int majVersion = Integer.parseInt(browserVersion.getMajorVersion());

Here is the code explaining how to do it using user-agent-utils:

String userAgent = req.getHeader("user-agent");
UserAgent ua = UserAgent.parseUserAgentString(userAgent);
Version browserVersion = ua.getBrowserVersion();
String browserName = ua.getBrowser().toString();
int majVersion = Integer.parseInt(browserVersion.getMajorVersion());
魄砕の薆 2024-12-12 10:10:31

检查 HTTP servlet 请求中的标头 - 他们会告诉您。检查“用户代理”标头。

Check the headers in the HTTP servlet request - they'll tell you. Check the "User-Agent" header.

夜访吸血鬼 2024-12-12 10:10:31

我推荐 UA 探测器 uadetector.sourceforge.net

I recommend UA Detector at uadetector.sourceforge.net

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