Arpan
Arpan

Reputation: 113

JTable using Swing

HI, I am new to programing world. I want to know how to generate dynamic table using java swing component. I like to know how rows are generated dynamically where column remains fixed. Please anybody can help me out

Upvotes: 0

Views: 1177

Answers (3)

Oliver Watkins
Oliver Watkins

Reputation: 13499

Everything you ever need to worry about is in your table model. Understand what an AbstractTableModel is, implement your own, and then you should be fine.

Upvotes: 0

Koen Weyn
Koen Weyn

Reputation: 1004

Have a look at the 'official' table tutorial: http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

Upvotes: 1

Related Questions