Package class in java

Package class: 

Package class provides the information about a package like package name, implementation title etc.

Example:

/**
 * This class is used to show use of Package class.
 * @author W3spoint
 */
public class Test {
       public static void main(String args[]){
               Package package1=Package.getPackage("java.lang"); 
               System.out.println("package name = "
                                        +package1.getName()); 
               System.out.println("Specification Title = "
                           +package1.getSpecificationTitle()); 
               System.out.println("Specification Vendor = "
                           +package1.getSpecificationVendor()); 
               System.out.println("Specification Version = "
                           +package1.getSpecificationVersion());  
               System.out.println("Implementaion Title = "
                           +package1.getImplementationTitle()); 
                }
}

Output:

package name = java.lang
Specification Title = Java Platform API Specification
Specification Vendor = Oracle Corporation
Specification Version = 1.7
Implementaion Title = Java Runtime Environment

Download this example.
 
Next Topic: this in java with example.
Previous Topic: Static import in java with example.

 

Content Protection by DMCA.com
Please Share