Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert a list to an array in java?

   ArrayList<Tienda> tiendas;
   List<Tienda> tiendasList; 
   tiendas = new ArrayList<Tienda>();
   Resources res = this.getBaseContext().getResources();
   XMLParser saxparser =  new XMLParser(marca,res);
   tiendasList = saxparser.parse(marca,res);
   tiendas = tiendasList.toArray();
   this.adaptador = new adaptadorMarca(this, R.layout.filamarca, tiendas);
   setListAdapter(this.adaptador);  

I need to populate the array tiendas with the values of tiendasList.

share|improve this question
3  
ArrayList isn't an array. Tienda[] would be an array. – Thomas Mar 5 '12 at 19:41

5 Answers

Either:

Foo[] array = list.toArray(new Foo[list.size()]);

or:

Foo[] array = new Foo[list.size()];
list.toArray(array); // fill the array
share|improve this answer
11  
@colymore Consider accept this answer as the right answer. – Eng.Fouad Jan 23 at 23:30
tiendas = new ArrayList<Tienda>(tiendasList);

All collection implementations have an overloaded constructor that takes another collection (with the template <T> matching). The new instance is instantiated with the passed collection.

share|improve this answer

Use Collection.toArray()

share|improve this answer

I think this is the simplest way:

Foo[] array = list.toArray(new Foo[0]);
share|improve this answer

Try this:

List list = new ArrayList();
list.add("Apple");
list.add("Banana");

Object[] ol = list.toArray();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.