Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/10/2009, 04:31
Avatar de Fuzzylog
Fuzzylog
 
Fecha de Ingreso: agosto-2008
Ubicación: En internet
Mensajes: 2.511
Antigüedad: 16 años, 4 meses
Puntos: 188
Respuesta: Crear array de strings

String[] arrayString = { "a", "b", "c",...}; //así hasta todos los elementos que tengas. Si tienes algun problema haces.

String[] arrayString = new String[31];
arrayString = { "a", "b", "c",...};

Suerte