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

I'm trying to make a simple list.

I've got this:

    String valuesArray[] = {"473", "592", "1774", "341", "355", "473", "950", "500", "44", "946.35", "750", "950"};
    List<String> valueList = Arrays.asList(valuesArray); 

Whenever I try to add something to the list, it force closes.

    valueList.add("Test");

And it really seems to only happen when I try to add to the list. I'm able to get values from the list, just not add to it.

share|improve this question
Age, wrap the calls to the valueList with a try/catch block and print the exception. Nice and simple way to get started on debugging your code. (Answers below re immutable collection are of course correct.) – alphazero Jun 18 '11 at 0:54

3 Answers

up vote 7 down vote accepted

As you can see from the docs for Arrays.asList(), the List returned from that method is fixed size. If you want something more versatile, you might try:

List<String> valueList = new ArrayList<String>(Arrays.asList(valuesArray));
share|improve this answer

Arrays.asList() returns a fixed size list. You cannot add to it.

share|improve this answer

Another option is to loop through the array and add them in one at a time, then, it won't be a fixed size for the list and you can do all the list operations that you want.

share|improve this answer

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.