gpt4 book ai didi

java - 如何从命令行查找有关 OpenJDK 提供程序的详细信息

转载 作者:行者123 更新时间:2023-11-30 12:06:10 25 4
gpt4 key购买 nike

OpenJDK 有很多供应商,即 Amazon – Corretto、Azul、IBM、Oracle、RedHat 等。

OpenJDK 是随我的操作系统预装的。因此,我对我的 OpenJDK 提供商一无所知。

当我查询它显示的版本时 -

blueray@blueray-i58600K:~$ java --version
openjdk 10.0.2 2018-07-17
OpenJDK Runtime Environment (build 10.0.2+13-Ubuntu-1ubuntu0.18.04.4)
OpenJDK 64-Bit Server VM (build 10.0.2+13-Ubuntu-1ubuntu0.18.04.4, mixed mode)

如何确认我的 OpenJDK 提供商的身份?

最佳答案

在命令行输入jshell

在 REPL 中复制粘贴以下行 -

System.out.println("java Vendor URL : "+System.getProperty("java.vendor.url"));
System.out.println("java Vendor : "+System.getProperty("java.vendor"));
System.out.println("java Version : "+System.getProperty("java.version"));
System.out.println("Java Runtime Name : "+System.getProperty("java.runtime.name"));
System.out.println("Java Runtime Version : "+System.getProperty("java.runtime.version"));
System.out.println("Java Runtime Version : "+Runtime.version());
System.out.println("Java Virtual Machine Specification Name : "+System.getProperty("java.vm.specification.name"));
System.out.println("Java Virtual Machine Specification Version : "+System.getProperty("java.vm.specification.version"));
System.out.println("Java Virtual Machine Specification Vendor : "+System.getProperty("java.vm.specification.vendor"));
System.out.println("Java Virtual Machine Implementation Name : "+System.getProperty("java.vm.name"));
System.out.println("Java Virtual Machine Implementation Version : "+System.getProperty("java.vm.version"));
System.out.println("Java Virtual Machine Implementation Vendor : "+System.getProperty("java.vm.vendor"));

输入

引用资料

Which JRE I am using

How to know if I am using Open JDK or Oracle JDK?

How to printout all the system variables , for example java.class.path

How to find the JVM version from a program?

Essential Classes > The Platform Environment

道歉和免责声明:我深表歉意,因为我确信我遗漏了一些引用资料。

关于java - 如何从命令行查找有关 OpenJDK 提供程序的详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55721684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com