Package.getPackages() has the following syntax.
public static Package [] getPackages()
In the following code shows how to use Package.getPackages() method.
/* w w w . j ava 2 s .c o m*/ 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.