ArrayList in java

Posted by fatih-yilmaz on Stack Overflow See other posts from Stack Overflow or by fatih-yilmaz
Published on 2010-05-06T14:07:46Z Indexed on 2010/05/06 14:18 UTC
Read the original article Hit count: 352

Filed under:
|
|
|
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.

© Stack Overflow or respective owner

Related posts about java

Related posts about array