I made a column editable in Jtable.
I want old values from a cell when I have finished editing a cell
You can get the value by using
table.getModel().getValueAt(row_index, col_index);
where table
is the name of the table and it will return an Object
Go through this Getting cell value. It may be useful for you.