如何测试Windows 7平台?

发布于 2024-08-21 22:02:06 字数 94 浏览 11 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(4

梦言归人 2024-08-28 22:02:06

我已经以空安全的方式解决了检查 os.name 的相同问题:

public boolean runningOnWindows7() {
    String osName = System.getProperty("os.name");
    String osVersion = System.getProperty("os.version");
    return "Windows 7".equals(osName) && "6.1".equals(osVersion);
}

I've solved the same problem checking also for os.name, in a null-safe way:

public boolean runningOnWindows7() {
    String osName = System.getProperty("os.name");
    String osVersion = System.getProperty("os.version");
    return "Windows 7".equals(osName) && "6.1".equals(osVersion);
}
匿名。 2024-08-28 22:02:06

操作系统版本号相当不同。

例如,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.

梦里寻她 2024-08-28 22:02:06
System.getProperty("os.name") 
System.getProperty("os.version")

Windows 7 = 版本 6.1

System.getProperty("os.name") 
System.getProperty("os.version")

Windows 7 = version 6.1

ゞ记忆︶ㄣ 2024-08-28 22:02:06

修复dfa的答案:

public boolean runningOnWindows7() {
    String osName = System.getProperty("os.name");
    String osVersion = System.getProperty("os.version");
    return "Windows 7".equals(osName) || "6.1".equals(osVersion);
}

||而不是 &&

Fix to dfa's answer:

public boolean runningOnWindows7() {
    String osName = System.getProperty("os.name");
    String osVersion = System.getProperty("os.version");
    return "Windows 7".equals(osName) || "6.1".equals(osVersion);
}

|| instead of &&

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