80
Java JTable
The JTable class is used to display data in tabular form. It is composed of rows and columns.
JTable class declaration
Let’s see the declaration for javax.swing.JTable class.
Commonly used Constructors:
Constructor | Description |
---|---|
JTable() | Creates a table with empty cells. |
JTable(Object[][] rows, Object[] columns) | Creates a table with the specified data. |
Java JTable Example
Output:
Java JTable Example with ListSelectionListener
Output:
If you select an element in column NAME, name of the element will be displayed on the console:
Next TopicJava JList