| Author |
How to get all classes present in a package?
|
sneha ulhe
Ranch Hand
Joined: May 15, 2012
Posts: 42
|
|
|
How can we get list of all classes present in any package,is there any method for that?
|
Sneha
[OCJP 6]
|
 |
Jeff Verdegan
Bartender
Joined: Jan 03, 2004
Posts: 5793
|
|
It's not possible in the general case, but for certain limited cases you can do it. Get the current ClassLoader, and if it's a URLClassLoader, then get its URLs, turn them into URIs, turn those into Files (if they are file URIs), and then list the files in the File object corresponding to the directory representing your package.
The question though is why? What are you trying to accomplish that you think you need to do this?
|
 |
 |
|
|
subject: How to get all classes present in a package?
|
|
|