My requirement is comparing String to ArrayList which contains a list of strings. Can any one suggest me?
|
|
||||
|
Use
If the String is present in the ArrayList, this function will return true, else will return false. |
|||
|
|
|
Look at the List#contains(T obj) method, like this:
|
|||
|
|
|
This is your method: private boolean containsString(String testString, ArrayList list) {
return list.contains(testString); |
|||
|
|
|
There are different options you could consider :
Well, the are pros and cons to those methods, it all depends on what you want to do and why and how you compare strings. Regards, Stéphane |
|||
|
|
|
If you are willing to use Lambdaj, then check the presence of the String as:
Using static import of
|
|||
|
|
|
ArrayList can contain one or more Strings. You cannot compare String with ArrayList. But you can check whether the ArrayList contains that String ot not using
|
|||
|
|

Stringto anArrayList. Be precise and show what you did until now. – Oltarus Jul 7 '11 at 8:38