Código PHP:
while(stringarray[] != null)
{
int intarray[] = new int[stringarray.length]; //creo el arreglo del tamaño del arreglo que es string
for(int contador=0;contador<stringarray.length;contador++)
intarray[contador] = Integer.parseInt(stringarray[contador]);
// se supone que asi cambio string a array no?
}
gracias por la pronta respuesta.
sin el while me marca error en esta linea
Código PHP:
intarray[contador] = Integer.parseInt(sringarray[contador]);
Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(Num berFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:468)
at java.lang.Integer.parseInt(Integer.java:497)
at Insertar.main(Insertar.java:86)
Java Result: 1
saludosy gracias