Get the string representation of the Package

ReturnMethodSummary
StringtoString()Returns the string representation of this Package.

public class Main {
  public static void main(String[] args) {
    Package p = Package.getPackage("javax.swing");

    System.out.println(p.toString());
  }
}

The output:


package javax.swing, Java Platform API Specification, version 1.6
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.