如何在 Java 9 中通过 JShell 获取 Java 和操作系统版本以及供应商详细信息?
Java 9 为 Java 编程语言引入了JShell 工具。此工具允许我们计算代码片段,例如声明、语句和表达式。我们可以通过使用 System 类的静态方法getProperty()获得 Java 版本和供应商的详细信息以及 OS 版本和名称的详细信息。
在下方的代码片段中,我们能够在 JShell 控制台中获取 Java 版本、Java 供应商以及 OS 版本和 OS 名称的详细信息。
C:\Users\User>jshell | Welcome to JShell -- Version 9.0.4 | For an introduction type: /help intro jshell> System.out.println(System.getProperty("java.version")); 9.0.4 jshell> System.out.println(System.getProperty("java.vendor")); Oracle Corporation jshell> System.out.println(System.getProperty("os.version")); 6.3 jshell> System.out.println(System.getProperty("os.name")); Windows 8.1 jshell>
广告