I have a situation were I want to convert a string into an ArrayList. In my string, I can have an arbitrary number of words which I want added into an ArrayList object, e.g.:
String s = "a,b,c,d,e,.........";
|
I have a situation were I want to convert a string into an ArrayList. In my string, I can have an arbitrary number of words which I want added into an ArrayList object, e.g.:
|
||||
|
|
|
Try something like
Demo:
|
|||||||||||
|
|
|||
|
|
|
String.split ? http://download.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#split(java.lang.String) |
|||
|
|
|
If you want to convert a string into a ArrayList try this:
But i see a string array in your example, so if you wanted to convert a string array into ArrayList use this:
|
|||
|