im trying to do some reflection on a applet. things i found are some arrays of ints, strings, objects etc.
for example, if there was a field with an object[] and object[0].toString() = [I@7593c366 then i know its an integer array. but what if it says aa@98324ca33 is it's class then aa? im using a classloader, so my first guess when i see this i need to load the aa class (part before the @, and use the object in it. but im not sure the part befor the @ is the class. can somebody say me this is right? or got other ideas?
thnx!
object[0].getClass()? Also, why would you need to load the class again? And you know that a class doesn't normally contain objects, don't you? Thus use the object in it is not quite accurate. – Thomas Jan 8 '12 at 9:35