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 one ArrayList of 10 Strings. How do I update the index 5 with another String value.

share|improve this question
7  
-1 because this can be looked up in the Javadoc quicker than posting the question here – a_horse_with_no_name Dec 4 '10 at 9:39
2  
+1 to -1. I'm sorry but this question is very basic. – Petro Semeniuk Dec 4 '10 at 9:42
1  
sorry for this and thanks for your guide – Saravanan Dec 4 '10 at 11:15

4 Answers

up vote 15 down vote accepted

let arrList be the arrayList and newValue the new string, then just do:

arrList.set(5,newValue);

This can be found in the java api reference here.

share|improve this answer
list.set(5,"newString");  
share|improve this answer
I think you mean index 5 as the ArrayList has only 10 elements and this would blow up. ;) – Peter Lawrey Dec 4 '10 at 9:53
@Peter oh yeah, exchanged 5 and 10 :p – Jigar Joshi Dec 4 '10 at 9:54
thanks for your guide.... – Saravanan Dec 4 '10 at 11:15
 arrList.set(5,newValue);

and if u want to update it then add this line also

 youradapater.NotifyDataSetChanged();
share|improve this answer

Actually, I have no answer but,

It's not bad to ask question even the most basic one's. Here in our place, teaching has a motto. And that is "there are no stupid questions".

There are many different kind of people with many different style of learning. And learning BASIC from other people is not bad.

Thank you and hope that a lot of people can help many of those people that has questions in their head. Either basic or advance questions.

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.