Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的意思是使用 javacode 我想找到应用程序的 JRE 版本,而不是服务器。在我的生产服务器中,我有成千上万的 java 应用程序,如 tomcat、websphere、axway 等。我想知道特定的应用程序 jre 版本。我将编写一个类,我想使用它进行打印。该类将被放置在特定的应用程序中。
我试过这个链接,但我没有得到它。
您应该尝试System.out.println(System.getProperty("java.version")); 我已经成功测试它打印用于运行代码的实际 Java 版本。
System.out.println(System.getProperty("java.version"));