Tema: toString
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/05/2015, 01:20
Avatar de Darstan
Darstan
 
Fecha de Ingreso: mayo-2015
Mensajes: 5
Antigüedad: 9 años, 7 meses
Puntos: 0
Exclamación toString

hola necesito ayuda quisiera saber como crear un objeto con el toString para mostrar de nuevo en un grupo de textfield por ejemplo;


else if (e.getSource() == b3) //esto es un boton que permite cargar datos a los txtfield
{
vehiculovp dat = new vehiculovp(pla,mode,mar,cilin,col);
//String pla = dat.getPla();
//int indice=lst2.getSelectedIndex();

cadena = lst2.getSelectedValue().toString();



// PARA NO PONER TODO ESTO ME DIJERON QUE CON UN toSTRING
SIMPLE SE PUEDE HACER LO MISMO PERO POR MAS QUE LO
INTENTO NO PUEDO.

/* String[] array = cadena.split(" ");

for (int i = 0; i < array.length; i++) {
t1.setText(array[0]);
t2.setText(array[1]);
t3.setText(array[2]);
t4.setText(array[3]);

EN POCAS PALABRAS EN VEZ DE QUE EN EL JLIST ME MUESTRE
LOS NOMBRES SIMPLEMENTE TIENEN QUE SALIR SIMBOLOS
Y AL LLAMAR LOS DATOS SALEN LOS DATOS NORMALES QUE
INGRESE
}*/

AYUDA PORFA NO SE QUE HACER..