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