您需要做的是像这样修改默认单元格编辑器:Object dce = jTable1.getDefaultEditor(Object.class);if(dce instanceof DefaultCellEditor) { Font font = new Font(jTable1.getFont().getName(), jTable1.getFont().getStyle(), 20); // 20 is your desired font size ((DefaultCellEditor) dce).getComponent().setFont(font);}这个概念是由@Redwine从这个SO答案中检索到的。