COGER TEXTO DE UN COMBOBOX

Iniciado por YanOner, 6 Febrero 2012, 00:55 AM

0 Miembros y 1 Visitante están viendo este tema.

YanOner

ArrayList array = new ArrayList(); //Asi puedes crear el array

array.add(valor); // asi agregar el valor, "valor"debe ser de tipo Object

Integer numero = Integer.parseInt(array.get(index)); //index es la posicion

NECESITO UN METODO DE COMO COGER EL TEXTO DE UN COMBOBOX???

String texto = "COGER TEXTO DE UN INDEX";

YanOner

ya lo solucione:
jComboBox.getSelectedItem().toString();