• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

JTable is not inserting the data

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I tried to insert to the value into the JTable, But I couldn't do it, Help me to resolve this.




Thanks and Regards,
Mahes
 
Sheriff
Posts: 22849
132
Eclipse IDE Spring Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Maheswaran Devaraj wrote:


The return of that method determines how many rows will be displayed. You will need to return something other than 0.
If you want to be able to add data, an Object[][] is a bad idea. A List<Object[]> will be a better idea; it will allow you to add rows (being Object[] instances). Also, use the fireXXX methods of AbstractTableModel after something has changed in your model, or you won't see the changes.
reply
    Bookmark Topic Watch Topic
  • New Topic