Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class that has a propery List<String> or List<SomeObject>.

I get the type of the property as this:

propertyClass = PropertyUtils.getPropertyType(currentObject, property);

What I want to do is check that the propertyClass is a List<SomeType> and get the class object for the type in the list. After this I will want to create an ArrayList of the given type and fill it with object of that type (all created dynamically, I will use this to dynamically load some data from a file).

Is there I way I can do this using reflection?

share|improve this question
How is the List created initially? – Miserable Variable Oct 6 '11 at 21:02

1 Answer

up vote 5 down vote accepted

Generics are erased after compilation (due to type erasure). So you can't use them at runtime.

share|improve this answer
Didn't know that, thanks for the info. – Razvi Oct 6 '11 at 21:32
I decided to use arrays instead of lists and got it to work properly like that :) – Razvi Oct 6 '11 at 21:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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