How to Find Classes Urgent!
I have loaded .class files using classLoader ..
i want to find calsses & interfaces which are present in perticular package structure(in memory)..if i use Package.getPackages() mathod
its returning me all the packages which are loaded in memory.using that package structure how to find the
classes and interface's
Advance Thanx
the problem is that its to hard to track the each classes and its packages.. i have more then 20 jars..each jar having morethen 25 classes with diff packge structure.. (more then one jar having same package structued classes )
so that i have loade all the classes using Systems class loader..
now my need is to find classes whichare present in perticular package structure..
for Ex. in system class loader it will automatically load java.jang.allclasses;
what i want is if i knew that package name (java.jang)
i should find the class name's like Object,String,Long...etc