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 string arraylist

ArrayList<String> data = new ArrayList<String>();

and I have stored string values inside. Now i want to do something like

data.get(0) == "a" // (need to compare)

How can I do? please help out.

share|improve this question

4 Answers

use list.contains(Object o) to check if list contains String. For comparing of String use "a".equals(list.get(0)) method.

share|improve this answer
1  
Small point, I recommend "a".equals(list.get(0)) instead of list.get(0).equals("a") – smas Mar 6 '11 at 13:45
@smas You're right, it prevets potencial NullPointerException if null is in array list. I've edited it. – michal.kreuzman Mar 6 '11 at 14:00

Here is some code to play with:

ArrayList<String> data = new ArrayList<String>();
data.add("a")
data.add("b")
data.add("c")

To check for equality:

data.get(0).equals("a"); // true
data.get(0).equals("b"); // false

To check for order:

data.get(0).compareTo("a"); // 0 (equal)
data.get(0).compareTo("b"); // -1 (a is less than b)
share|improve this answer
if(data.size() > 1 && "a".equals((String)data.get(0))) {
  //do something
}

You should really use generics:

ArrayList<String> data = new ArrayList<String>();
if(data.size() > 1 && "a".equals(data.get(0))) {
  //do something
}
share|improve this answer

So this is basic operations on Array and String. You have answer for your questions in Michal's post. But you can read some guide about it and do it by yourself

Oracle have nice tutorial about Arrays and for String you can find "String comparison" or just find method to compare in documentation String class in Java 1.6

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.