1-) Java - JTABLEDEKİ İSTENİLEN SUTUNU SEÇİLEN SATIRA GORE EKRANA GETİRİR
private void talep_tableMouseClicked(java.awt.event.MouseEvent evt) {
TableModel tm = talep_table.getModel();
int j, max = 0;
String value = "";
for (j = 0; j < tm.getColumnCount(); j++) {
if (tm.getColumnName(j) == "resmi_goster")//TABLODAKİ SUTUN İSMİ GELİR OLANIN
{ break; } }
value = (tm.getValueAt(talep_table.getSelectedRow(), j - 1).toString());
JOptionPane.showMessageDialog(rootPane, value);
}