I have a jtable in an java application and it reads an object[x][y]开发者_Go百科 when created (with the jtablejTable3.setModel() function).Is there any function when objects data be changed to load them in my java table
Use an EventTableModel
from the Glazed Lists library to back your JTable
.
put your data in the tablemodel, and call
tableModel.fireTableDataChanged();
精彩评论