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

I am trying to get a sublist of a List but I want the sublist to be serialized. I found out that when we get sublist from an ArrayList the sublist is not serialized.

To overcome this, this is what I am doing:

ArrayList serializedSublist = new ArrayList();
//getQuestions() returns RandomAccessSubList
getQuestions().addAll(serializedSublist); 
//problem is in the line below. serializedSublist is empty.
getRequest().getSession().setAttribute("questionsForUser", serializedSublist);

Problem is that serializedSubList is empty in line 5, eventhough in line 3 getQuestions() returns a list back.

share|improve this question

1 Answer

up vote 5 down vote accepted

You're adding it backwards, no? Shouldn't it be

serializedSublist.addAll(getQuestions());

or, better, yet

ArrayList serializedSublist = new ArrayList(getQuestions());
share|improve this answer
1  
To expand the excellent answer: here's what API says about addAll(): java.sun.com/javase/6/docs/api/java/util/… In the future keep in mind to consult the API docs first. They contains answers on this kind of questions/problems about Java behaviour. – BalusC Dec 10 '09 at 18:37
dope...ok that was a stupid question. thanks .. – Omnipresent Dec 10 '09 at 18:45

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.