通过 Groovy/Grails 检测平台(Windows 或 Linux)

发布于 2024-10-11 16:19:36 字数 57 浏览 1 评论 0原文

有没有办法通过 Groovy / Grails 检测网站运行的平台(Window / Linux)?

Is there a way to detect the platform (Window / Linux) in which the website is running by Groovy / Grails?

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

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

发布评论

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

评论(2

梦言归人 2024-10-18 16:19:36
System.properties['os.name']

将返回操作系统的名称,例如“Windows XP”。因此,如果您想确定是否在 Windows 上运行,您可以执行以下操作:

if (System.properties['os.name'].toLowerCase().contains('windows')) {
    println "it's Windows"
} else {
    println "it's not Windows"
}

或者,org.apache.commons.lang.SystemUtils (来自 Apache commons-lang 项目)公开了一些提供相同信息的布尔常量如上面的代码,例如

SystemUtils.IS_OS_MAC
SystemUtils.IS_OS_WINDOWS
SystemUtils.IS_OS_UNIX

还可以使用更具体的常量

SystemUtils.IS_OS_WINDOWS_2000
SystemUtils.IS_OS_SOLARIS
SystemUtils.IS_OS_MAC_OSX
System.properties['os.name']

will return the name of the OS, e.g. "Windows XP". So if you want to figure out whether you're running on Windows or not, you could do something like:

if (System.properties['os.name'].toLowerCase().contains('windows')) {
    println "it's Windows"
} else {
    println "it's not Windows"
}

Alternatively, org.apache.commons.lang.SystemUtils (from the Apache commons-lang project) exposes some boolean constants that provide the same information as the code above, e.g.

SystemUtils.IS_OS_MAC
SystemUtils.IS_OS_WINDOWS
SystemUtils.IS_OS_UNIX

More specific constants such as these are also available

SystemUtils.IS_OS_WINDOWS_2000
SystemUtils.IS_OS_SOLARIS
SystemUtils.IS_OS_MAC_OSX
人海汹涌 2024-10-18 16:19:36

或者简而言之:

if (System.env['OS'].contains('Windows')){ println "it's Windows" }

由于 Groovy 提供了对 getAt/putAt 方法

Or for short:

if (System.env['OS'].contains('Windows')){ println "it's Windows" }

Since Groovy provides a map access to getAt/putAt methods.

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