Java Package.getPackages()
Syntax
Package.getPackages() has the following syntax.
public static Package [] getPackages()
Example
In the following code shows how to use Package.getPackages() method.
/*from ww w. j a va 2 s. c om*/
public class Main {
public static void main(String[] args) {
// get all the packages
Package[] pack = Package.getPackages();
for (int i = 0; i < pack.length; i++) {
System.out.println(pack[i]);
}
}
}
The code above generates the following result.