Mega Code Archive

 
Categories / Java / Swing JFC
 

Creating a JTable Component

import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTable; public class Main {   public static void main(String[] argv) throws Exception {     Object[][] cellData = { { "1-1", "1-2" }, { "2-1", "2-2" } };     String[] columnNames = { "col1", "col2" };     JTable table = new JTable(cellData, columnNames);          JFrame f = new JFrame();     f.setSize(300,300);     f.add(new JScrollPane(table));     f.setVisible(true);   } }