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 asked a question in : reflect a list object

I actually got my answer just want to understand why when do this I will hits illegalArgumentException : Can not set static final ArrayList SerialVersionUID to java.lang.long. But when I do one object reflect to another object no error.

List<ClassB> listB = (List<ClassB>) convert(listA, ArrayList.class); 
share|improve this question

1 Answer

up vote 1 down vote accepted

There is a problem with the convert method when it tries to assign a final field. I suggest you modify the convert method as follows.

    for (Field targetField : targetClass.getDeclaredFields()) {
        if (!Modifier.isFinal(targetField.getModifiers())) {
            targetField.setAccessible(true);
            Field field =
                instance.getClass().getDeclaredField(targetField.getName());
            field.setAccessible(true);
            targetField.set(target, field.get(instance));
         }
     }
share|improve this answer
Why when reflect list got this problem if only object to object nothing happen ? Does it mean object to object it won't assign a final field? Sorry this is the part I don't understand – user236501 Jan 13 '10 at 11:42

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.