[color=darkblue]
Tenho a seguinte String:
String teste = “280001”;
Gostaria de saber como conveto ela para um Array:
Array[0] = 2;
Array[1] = 8;
Array[2] = 0;
Array[3] = 0;
Array[4] = 0;
Array[5] = 1;
Desde já agradeço
[/color]
[color=darkblue]
Tenho a seguinte String:
String teste = “280001”;
Gostaria de saber como conveto ela para um Array:
Array[0] = 2;
Array[1] = 8;
Array[2] = 0;
Array[3] = 0;
Array[4] = 0;
Array[5] = 1;
Desde já agradeço
[/color]
[code]String teste = “280001”;
char array[] = new char[teste.length()];
for (int i = 0; i < teste.length(); i++) {
array[i] = teste.charAt(i);
}
for (int i = 0; i < teste.length(); i++) {
System.out.println(array[i]);
}[/code]
[color=darkblue] Obrigado ![/color]
Ou simplesmente,
char[] arrayDeChar = teste.toCharArray() ;
ah eh!!!
tinha me esquecido dessa simplicidade!!!
rsrsrsrsrs