What is JTable and what is its purpose?
Answers were Sorted based on User's Feedback
Answer / sathiq
JTable is a Swing Componenet which is used to show the datas
in table format. It contains many custom models
| Is This Answer Correct ? | 78 Yes | 9 No |
Answer / p.sakthivel
We can make it like spreadsheet and we can modify the
cells for JTextField, JCheckBox , JComboBox etc., by using
TableCellEditor.
To design an input dialog for Student database
we can make it by simple table by using JTable and
TableModel no need to design dialog with JButton and
JLabels with Layout
| Is This Answer Correct ? | 44 Yes | 7 No |
Answer / shrikrishna kashid
With the JTable class you can display tables of data,
optionally allowing the user to edit the data. JTable does
not contain or cache data; it is simply a view of your data.
| Is This Answer Correct ? | 15 Yes | 12 No |
Answer / narmada
The JTable is used to display and edit regular two-dimensional tables of cells.
The JTable has many facilities that make it possible to customize its rendering and editing but provides defaults for these features so that simple tables can be set up easily. For example, to set up a table with 10 rows and 10 columns of numbers:
TableModel dataModel = new AbstractTableModel() {
public int getColumnCount() { return 10; }
public int getRowCount() { return 10;}
public Object getValueAt(int row, int col) { return new Integer(row*col); }
};
JTable table = new JTable(dataModel);
JScrollPane scrollpane = new JScrollPane(table);
| Is This Answer Correct ? | 10 Yes | 9 No |
Is javafx better than swing?
What are the features of swing in java?
What is the function of internal frame in swing?
What is the purpose of action interface in swing?
Which window contains the swing controls?
Name the method, to expand & collapse nodes in a Jtree?
what is difference between checked and unchecked exception plz explain examples ?
What is java swing gui?
What are tab pans?
What are heavyweight components? What is lightweight component?
Why are swings considered lightweight?
Who created the swing?