vote up 0 vote down star

I'm trying to use reflection to call a method that takes in a byte array.

I'm starting off doing:

Class myClass = anObject.getClass();
Class[] parameterTypes =
 {byte[].getClass();};

But that doesn't work (class expected, } expected) on the byte[] line. Anyone know what I should do? Cast to an Object and declare that the method takes an Object?

flag

23% accept rate

1 Answer

vote up 2 vote down
Class[] parameterTypes = new Class[] {byte[].class};
link|flag
great, thanks, that worked. I don't really understand why Integer[] x = {5}; and Integer[] y = {new Integer(5)}; work. – jbu Jul 9 at 23:00
Well, Class[] parameterTypes = {byte[].class} works too, as do your examples. The problem with your original code is trying to invoke getClass() instance method on byte[] declaration. – ChssPly76 Jul 9 at 23:04
(And that should probably be Class<?>[]. – Tom Hawtin - tackline Jul 9 at 23:18
ooooooooohh.... – jbu Jul 10 at 0:54
Integer[] x = {5} works because 5 is autoboxed -- equivalent to Integer.valueOf(5). – David Moles Jul 10 at 8:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.