-1

I have a jtable in an java application and it reads an object[x][y] when created (with the jtablejTable3.setModel() function).Is there any function when objects data be changed to load them in my java table

Eng.Fouad
  • 115,165
  • 71
  • 313
  • 417
user973493
  • 39
  • 1
  • 5

2 Answers2

0

put your data in the tablemodel, and call

tableModel.fireTableDataChanged();
Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
ollins
  • 1,851
  • 12
  • 16
0

Use an EventTableModel from the Glazed Lists library to back your JTable.

Barend
  • 17,296
  • 2
  • 61
  • 80