Package.getImplementationVersion() has the following syntax.
public String getImplementationVersion()
In the following code shows how to use Package.getImplementationVersion() method.
/*from w w w . j a va 2 s . c o m*/ 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.