通过 Groovy/Grails 检测平台(Windows 或 Linux)
有没有办法通过 Groovy / Grails 检测网站运行的平台(Window / Linux)?
Is there a way to detect the platform (Window / Linux) in which the website is running by Groovy / Grails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将返回操作系统的名称,例如“Windows XP”。因此,如果您想确定是否在 Windows 上运行,您可以执行以下操作:
或者,
org.apache.commons.lang.SystemUtils
(来自 Apache commons-lang 项目)公开了一些提供相同信息的布尔常量如上面的代码,例如还可以使用更具体的常量
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:
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.More specific constants such as these are also available
或者简而言之:
由于 Groovy 提供了对
getAt/putAt
方法。Or for short:
Since Groovy provides a map access to
getAt/putAt
methods.