Package.getName() has the following syntax.
public String getName()
In the following code shows how to use Package.getName() method.
//from w w w . j a va 2 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 fully qualified name for this package System.out.println(pack.getName()); } }
The code above generates the following result.