如何测试Windows 7平台?
我有一个 Java 应用程序,在 Windows 7 上需要以不同的方式运行。
您如何检查存在哪个 Windows 版本?检查操作系统版本 6.1 是否足够?
I have a Java app which needs to run differently when on Windows 7.
How would you check which Windows version is present? Is it enough to check for OS version 6.1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我已经以空安全的方式解决了检查 os.name 的相同问题:
I've solved the same problem checking also for
os.name
, in a null-safe way:操作系统版本号相当不同。
例如,XP 用数字 5.1 表示,Windows 7 用 6.1 表示。
内部版本号决定更新和服务包。
检查操作系统版本号应该相当可靠。但请记住,如果计算机上安装了 Java,则允许 Java 在 Linux 和 Mac 上运行。
OS Version Numbers are rather distinct.
For example, XP is denoted with the number 5.1 and Windows 7 denoted by 6.1
The build numbers determine the updates, and service packs.
It should be rather reliable checking OS version number. but keep in mind that Java is allowed to run on Linux and Mac if Java is installed on the machine.
Windows 7 = 版本 6.1
Windows 7 = version 6.1
修复dfa的答案:
||而不是 &&
Fix to dfa's answer:
|| instead of &&