Fórum Converter Array[] em ArrayList #567346
09/04/2009
0
Felipe Rodriguês
Curtir tópico
+ 0Posts
09/04/2009
André Marsola
Gostei + 0
09/04/2009
Felipe Rodriguês
String [] ars = new String[]{"abc", "def"};
ArrayList = ars; // preciso converter o Array em ArrayListGostei + 0
09/04/2009
Giulianocosta
Gostei + 0
09/04/2009
Dadario
String [] ars = new String[]{"abc", "def"};
List lista = Arrays.asList(args);ArrayList lista = new ArrayList(lista);
Gostei + 0
09/04/2009
Felipe Rodriguês
Gostei + 0
09/04/2009
Marcos Petry
Gostei + 0
09/04/2009
Bruno Navarro
ArrayList al = new ArrayList();
for(int i = 0 ; i<array.lenght(); i++)
al.add( array[i] ) ;
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)