使用 Java 获取有关标准浏览器的信息
我的 Java 应用程序通过让 Windows 默认文件处理程序处理 html 文档来打开它们。在执行此操作之前,我想确定(用于统计)标准浏览器是什么以及安装了哪个版本。
是否可以在任何地方找到此信息?
更新 此应用程序仅在 Windows 上运行。
My Java app opens html documents by letting the windows default file handler deal with them. Before doing this I'd like to determine (for statistics) what the standard browser is and which version is installed.
Is it possible to find this information anywhere?
Update This app runs only on Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是以标准或便携式方式。您需要访问操作系统的某些功能。
编辑:在Windows上,我认为您唯一的选择是挖掘注册表,可能使用您使用
Process
类调用的WSH脚本。可恶的。Not in a standard or portable way. You'd need access to some facilities of the OS.
EDIT: On Windows, I think your only option is to mine the registry, possibly using a WSH script that you invoke using the
Process
class. Nasty.