Java tutorial
//package com.java2s; import javax.swing.*; public class Main { public static void setPrefColumnWidth(JTable table, int index, int width) { table.getColumnModel().getColumn(index).setMinWidth(width); table.getColumnModel().getColumn(index).setPreferredWidth(width); } }