Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Add 5 spaces to the left and right sides of a cell

import java.awt.Dimension; import javax.swing.JTable; public class Main {   public static void main(String[] argv) throws Exception {     JTable table = new JTable();     int gapWidth = 10;     int gapHeight = 4;     table.setIntercellSpacing(new Dimension(gapWidth, gapHeight));   } }