Create a JTable with two dimensional array in Java
Description
The following code shows how to create a JTable with two dimensional array.
Example
// w ww .j av a 2 s . co m
import java.awt.BorderLayout;
import java.awt.Container;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
public class Main {
public static void main(String args[]) {
JFrame f = new JFrame("JTable Sample");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container content = f.getContentPane();
Object rows[][] = { { "AMZN", "Amazon", "67 9/16" },
{ "AOL", "America Online", "68 3/4" },
{ "BOUT", "About.com", "56 3/8" },
{ "YHOO", "Yahoo!", "151 1/8" } };
Object columns[] = { "Symbol", "Name", "Price" };
JTable table = new JTable(rows, columns);
JScrollPane scrollPane = new JScrollPane(table);
content.add(scrollPane, BorderLayout.CENTER);
f.setSize(300, 200);
f.setVisible(true);
}
}
The code above generates the following result.
Home »
Java Tutorial »
Swing »
Java Tutorial »
Swing »