ArrayList<String> veri1 = new ArrayList<String>();
String[] veri2 = {"Fatih", "Ferhat", "Furkan"};
How can i add "veri2" to "veri1" like one element ? I mean if i call veri.get(0), it returns veri2..
Regards.
How can i add "veri2" to "veri1" like one element ? I mean if i call veri.get(0), it returns veri2.. Regards. |
|||||
|
|
You should declare your list as a list of string arrays, not a list of strings:
Note that in general it is better to declare your list as |
|||||||||
|
|
You should use the List interface and generics (for Java >= 1.5). Depending on what you want to do you can use this:
|
|||
|
|
|
You can't actually do this. veri2 is an array of strings, veri1 is an arraylist of individual strings Thus, doing veri1.get(0) should return a single string, not an array of strings. |
|||
|
|
|
I just saw (due to fm), that you have an
or
You can also make ver1 a |
|||||||||||
|
|
It all depends on whether or not you want your ArrayList to be of one type or if you need it to hold multiple types. If you just need it to hold String arrays throughout your code, declare as stated above:
then just add the String array to it as follows:
If you want it to be dynamic, declare it with the object type:
and then you can add anything later on as well:
|
|||
|
|
|
You pretty much just need to add the array to the ArrayList.
|
|||
|
|
|
I think you mean this:
|
||||
|
|