Java detect version at runtime

What version is your Java code?

At first the question seems rather trivial. So little code is involved in the Hello class, and whatever there is uses only functionality dating back to Java 1.0. So the class should run in just about any JVM with no problems, right?

Don’t be so sure. Compile it using javac from Java 2 Platform, Standard Edition (J2SE) 1.4.1 and run it in an earlier version of the Java Runtime Environment (JRE):

>. \jdk1.4.1\bin\javac Hello.java >. \jdk1.3.1\bin\java Hello world Exception in thread "main" java.lang.NoSuchMethodError at Hello.main(Hello.java:20)

Instead of the expected «hello, world!,» this code throws a runtime error even though the source is 100 percent Java 1.0 compatible! And the error isn’t exactly what you might expect either: instead of a class version mismatch, it somehow complains about a missing method. Puzzled? If so, you will find the full explanation later in this article. First, let’s broaden the discussion.

Why bother with different Java versions?

Java is quite platform-independent and mostly upwards compatible, so it is common to compile a piece of code using a given J2SE version and expect it to work in later JVM versions. (Java syntax changes usually occur without any substantial changes to the byte code instruction set.) The question in this situation is: Can you establish some kind of base Java version supported by your compiled application, or is the default compiler behavior acceptable? I will explain my recommendation later.

Читайте также:  Проверить существует ли директория python

Another fairly common situation is to use a higher versioned compiler than the intended deployment platform. In this case, you do not use any recently added APIs, but merely want to benefit from tool improvements. Look at this code snippet and try to guess what it should do at runtime:

public class ThreadSurprise < public static void main (String [] args) throws Exception < Thread [] threads = new Thread [0]; threads [-1].sleep (1); // Should this throw? >> // End of class

Should this code throw an ArrayIndexOutOfBoundsException or not? If you compile ThreadSurprise using different Sun Microsystems JDK/J2SDK (Java 2 Platform, Standard Development Kit) versions, behavior will not be consistent:

  • Version 1.1 and earlier compilers generate code that does not throw
  • Version 1.2 throws
  • Version 1.3 does not throw
  • Version 1.4 throws

The subtle point here is that Thread.sleep() is a static method and doesn’t need a Thread instance at all. Still, the Java Language Specification requires the compiler to not only infer the target class from the left-hand expression of threads [-1].sleep (1); , but also evaluate the expression itself (and discard such an evaluation’s result). Is referencing index -1 of the threads array part of such an evaluation? The wording in the Java Language Specification is somewhat vague. The summary of changes for J2SE 1.4 implies that the ambiguity was finally resolved in favor of evaluating the left-hand expression fully. Great! Since the J2SE 1.4 compiler seems like the best choice, I want to use it for all my Java programming even if my target runtime platform is an earlier version, just to benefit from such fixes and improvements. (Note that at the time of writing not all application servers are certified on the J2SE 1.4 platform.)

Читайте также:  Python concat list elements

Although the last code example was somewhat artificial, it served to illustrate a point. Other reasons to use a recent J2SDK version include wanting to benefit from javadoc and other tool improvements.

Finally, cross-compilation is quite a way of life in embedded Java development and Java game development.

Hello class puzzle explained

The Hello example that started this article is an example of incorrect cross-compilation. J2SE 1.4 added a new method to the StringBuffer API: append(StringBuffer) . When javac decides how to translate greeting.append (who) into byte code, it looks up the StringBuffer class definition in the bootstrap classpath and selects this new method instead of append(Object) . Even though the source code is fully Java 1.0 compatible, the resulting byte code requires a J2SE 1.4 runtime.

Note how easy it is to make this mistake. There are no compilation warnings, and the error is detectable at runtime only. The correct way to use javac from J2SE 1.4 to generate a Java 1.1-compatible Hello class is:

>. \jdk1.4.1\bin\javac -target 1.1 -bootclasspath . \jdk1.1.8\lib\classes.zip Hello.java

The correct javac incantation contains two new options. Let’s examine what they do and why they are necessary.

Every Java class has a version stamp

You may not be aware of it, but every .class file you generate contains a version stamp: two unsigned short integers starting at byte offset 4, right after the 0xCAFEBABE magic number. They are the major/minor version numbers of the class format (see the Class File Format Specification), and they have utility besides just being extension points for this format definition. Every version of the Java platform specifies a range of supported versions. Here is the table of supported ranges at this time of writing (my version of this table differs from data in Sun’s docs slightly—I chose to remove some range values only relevant to extremely old (pre-1.0.2) versions of Sun’s compiler):

Java 1.1 platform: 45.3-45.65535 Java 1.2 platform: 45.3-46.0 Java 1.3 platform: 45.3-47.0 Java 1.4 platform: 45.3-48.0

A compliant JVM will refuse to load a class if the class’s version stamp is outside of the JVM’s support range. Note from the previous table that later JVMs always support the entire version range from the previous version level and also extend it.

What does this mean to you as a Java developer? Given the ability to control this version stamp during compilation, you can enforce the minimum Java runtime version required by your application. This is precisely what the -target compiler option does. Here is a list of version stamps emitted by javac compilers from various JDKs/J2SDKs by default (observe that J2SDK 1.4 is the first J2SDK where javac changes its default target from 1.1 to 1.2):

JDK 1.1: 45.3 J2SDK 1.2: 45.3 J2SDK 1.3: 45.3 J2SDK 1.4: 46.0

And here is the effect of specifying various -target s:

-target 1.1: 45.3 -target 1.2: 46.0 -target 1.3: 47.0 -target 1.4: 48.0

As an example, the following uses the URL.getPath() method added in J2SE 1.3:

URL url = new URL ("http://www.javaworld.com/columns/jw-qna-index.shtml"); System.out.println ("URL path: " + url.getPath ());

Since this code requires at least J2SE 1.3, I should use -target 1.3 when building it. Why force my users to deal with java.lang.NoSuchMethodError surprises that occur only when they have mistakenly loaded the class in a 1.2 JVM? Sure, I could document that my application requires J2SE 1.3, but it would be cleaner and more robust to enforce the same at binary level.

I don’t think the practice of setting the target JVM is widely used in enterprise software development. I wrote a simple utility class DumpClassVersions (available with this article’s download) that can scan files, archives, and directories with Java classes and report all encountered class version stamps. Some quick browsing of popular open source projects or even core libraries from various JDKs/J2SDKs will show no particular system for class versions.

Bootstrap and extension class lookup paths

When translating Java source code, the compiler needs to know the definition of types it has not yet seen. This includes your application classes and core classes like java.lang.StringBuffer . As I am sure you are aware, the latter class is frequently used to translate expressions containing String concatenation and the like.

A process superficially similar to normal application classloading looks up a class definition: first in the bootstrap classpath, then the extension classpath, and finally in the user classpath ( -classpath ). If you leave everything to the defaults, the definitions from the «home» javac’s J2SDK will take effect—which may not be correct, as shown by the Hello example.

To override the bootstrap and extension class lookup paths, you use -bootclasspath and -extdirs javac options, respectively. This ability complements the -target option in the sense that while the latter sets the minimum required JVM version, the former selects the core class APIs available to the generated code.

Remember that javac itself was written in Java. The two options I just mentioned affect the class lookup for byte-code generation. They do not affect the bootstrap and extension classpaths used by the JVM to execute javac as a Java program (the latter could be done via the -J option, but doing that is quite dangerous and results in unsupported behavior). To put it another way, javac does not actually load any classes from -bootclasspath and -extdirs ; it merely references their definitions.

With the newly acquired understanding for javac’s cross-compilation support, let’s see how this can be used in practical situations.

Scenario 1: Target a single base J2SE platform

This is a very common case: several J2SE versions support your application, and it so happens you can implement everything via core APIs of a certain (I will call it base) J2SE platform version. Upward compatibility takes care of the rest. Although J2SE 1.4 is the latest and greatest version, you see no reason to exclude users who can’t run J2SE 1.4 yet.

The ideal way to compile your application is:

\bin\javac -target -bootclasspath \jre\lib\rt.jar -classpath

Yes, this implies you might have to use two different J2SDK versions on your build machine: the one you pick for its javac and the one that is your base supported J2SE platform. This seems like extra setup effort, but it is actually a small price to pay for a robust build. The key here is explicitly controlling both the class version stamps and the bootstrap classpath and not relying on defaults. Use the -verbose option to verify where core class definitions are coming from.

As a side comment, I’ll mention that it is common to see developers include rt.jar from their J2SDKs on the -classpath line (this could be a habit from the JDK 1.1 days when you had to add classes.zip to the compilation classpath). If you followed the discussion above, you now understand that this is completely redundant, and in the worst case, might interfere with the proper order of things.

Scenario 2: Switch code based on the Java version detected at runtime

Here you want to be more sophisticated than in Scenario 1: You have a base-supported Java platform version, but should your code run in a higher Java version, you prefer to leverage newer APIs. For example, you can get by with java.io.* APIs but wouldn’t mind benefiting from java.nio.* enhancements in a more recent JVM if the opportunity presents itself.

In this scenario, the basic compilation approach resembles Scenario 1’s approach, except your bootstrap J2SDK should be the highest version you need to use:

\bin\javac -target -bootclasspath \jre\lib\rt.jar -classpath

This is not enough, however; you also need to do something clever in your Java code so it does the right thing in different J2SE versions.

One alternative is to use a Java preprocessor (with at least #ifdef/#else/#endif support) and actually generate different builds for different J2SE platform versions. Although J2SDK lacks proper preprocessing support, there is no shortage of such tools on the Web.

However, managing several distributions for different J2SE platforms is always an additional burden. With some extra foresight you can get away with distributing a single build of your application. Here is an example of how to do that ( URLTest1 is a simple class that extracts various interesting bits from a URL):

Источник

Java-Buddy

To check the version of running Java and JavaFX in your Java code, you can get property of «java.version» and «javafx.runtime.version» by calling System.getProperty() method.

System.getProperty(«java.version»);
System.getProperty(«javafx.runtime.version»);

Example in Java Application:

Example in Java Application

package java_version; /** * * @web http://java-buddy.blogspot.com/ */ public class Java_version < public static void main(String[] args) < System.out.println("java.version: " + System.getProperty("java.version")); System.out.println("javafx.runtime.version: " + System.getProperty("javafx.runtime.version")); >>

Example in JavaFX Application:

Example in JavaFX Application

package javafx_version; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.StackPane; import javafx.stage.Stage; /** * * @web http://java-buddy.blogspot.com/ */ public class JavaFX_version extends Application < @Override public void start(Stage primaryStage) < System.out.println("java.version: " + System.getProperty("java.version")); System.out.println("javafx.runtime.version: " + System.getProperty("javafx.runtime.version")); Button btn = new Button(); btn.setText("Say 'Hello World'"); btn.setOnAction(new EventHandler() < @Override public void handle(ActionEvent event) < System.out.println("Hello World!"); >>); StackPane root = new StackPane(); root.getChildren().add(btn); Scene scene = new Scene(root, 300, 250); primaryStage.setTitle("Hello World!"); primaryStage.setScene(scene); primaryStage.show(); > public static void main(String[] args) < launch(args); >>

Источник

Оцените статью