Removing the Column Headers from a Scrollable in a JTable Component - Java Swing

Java examples for Swing:JTable Scroll

Description

Removing the Column Headers from a Scrollable in a JTable Component

Demo Code

import javax.swing.JTable;

public class Main {

  public void main(String[] argv) {
    JTable table = new JTable();

    // Remove the column headers
    table.setTableHeader(null);//from w  w w  .j ava  2s  .com
  }
}

Related Tutorials