How to update JTable data without refresh whole JTable
I create a JTable and a String array. I add thisString array to JTable. After I got new data and Iwant to update JTabel and I don't want to refresh thewhole JTable.Thanks for help Shrinath
[231 byte] By [
Shrinatha] at [2007-10-2 16:49:12]

You could try the following, it appears to do what you are looking for.AbstractTableModel yourModel = (AbstractTableModel)table.getModel();yourModel.fireTableRowsInserted(row1, row2);