Java examples for Swing:JTable Scroll
Removing the Column Headers from a Scrollable in a JTable Component
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 } }