Thursday, May 7, 2026
HomeLanguagesJavaPackage getImplementationVersion() method in Java with Examples

Package getImplementationVersion() method in Java with Examples

The getImplementationVersion() method of java.lang.Package class is used to get the version of the implementation of this package. The method returns the implementation version of the package as a String.
Syntax: 
 

public String getImplementationVersion()

Parameter: This method does not accept any parameter.
Return Value: This method returns the implementation version of the package as a String, if known. Else it returns null
Below programs demonstrate the getImplementationVersion() method.
Example 1:
 

Java




// Java program to demonstrate
// getImplementationVersion() method
 
public class Test {
    public static void main(String[] args)
    {
 
        // returns the Package object
        // for this package
        Package myPackage
            = Package.getPackage("java.lang");
 
        System.out.println(
            "Package represented by myPackage: "
            + myPackage.toString());
 
        // Get the implementation version of myPackage
        // using getImplementationVersion() method
        System.out.println(
            "Implementation version of myPackage: "
            + myPackage.getImplementationVersion());
    }
}


Output: 

Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8
Implementation version of myPackage: 1.8.0_181

 

Example 2:
 

Java




// Java program to demonstrate
// getImplementationVersion() method
 
public class Test {
    public static void main(String[] args)
    {
 
        // returns the Package object
        // for this package
        Package myPackage
            = Package.getPackage("java.io");
 
        System.out.println(
            "Package represented by myPackage: "
            + myPackage.toString());
 
        // Get the name of myPackage
        // using getImplementationVersion() method
        System.out.println(
            "Implementation version of myPackage: "
            + myPackage.getImplementationVersion());
    }
}


Output: 

Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8
Implementation version of myPackage: 1.8.0_181

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#getImplementationVersion–
 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6891 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12105 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6962 POSTS0 COMMENTS