Java Package .getImplementationVersion ()
Syntax
Package.getImplementationVersion() has the following syntax.
public String getImplementationVersion()
Example
In the following code shows how to use Package.getImplementationVersion() method.
// w w w . j av a2 s . c om
public class Main {
public static void main(String[] args) {
// create a package object for java.lang package
Package pack = Package.getPackage("java.lang");
// get the implementation version
System.out.println(pack.getImplementationVersion());
}
}
The code above generates the following result.