20/05/2005, 05:03
|
| | Fecha de Ingreso: mayo-2005 Ubicación: España
Mensajes: 279
Antigüedad: 19 años, 8 meses Puntos: 2 | |
String valor=datos.getCadena();
String val="";
for(int h=0; h<valor.length;h++){
while(!(valor.charAt(h)=="-"))
{
val=val.add(charAt(h));
}
System.out.println(val);
val="";
}
Donde datos.getCadena() devuelve el valor del atributo cadena(tipo String) de un bean(datos).
Te agradezco mucho tu ayuda |