Jtable

como fazer isso com o Jtable

cb_uf.setSelectedItem(con_cidade.resultset.getString(“uf”)); ?

table.getSelectionModel().setSelectionInterval(index0, index1);

http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/ListSelectionModel.html#setSelectionInterval%28int,%20int%29

E seu TableModel poderia ter um metodo bem util estilo indexOf e voce faria assim.

int linha = model.indexOf(objeto);
table.getSelectionModel().setSelectionInterval(linha, linha);