在我的代码中,我JTable
填充了来自数据库的数据。
这是我的 JPanel 的构造函数:
public MainPanel(Vector<Vector<String>> films)
{
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
int width = this.getSize().width;
int height = this.getSize().height;
int x = (dim.width-width)/2;
int y = (dim.height-height)/2;
header = new Vector<String>();
data = new Vector<Vector<String>>();
header.add("ID");
header.add("Name");
header.add("Year");
header.add("Genre");
this.data = films;
this.setVisible(true);
this.setLocation(x, y);
initComponents();
}
这是初始化JTable
:
jTable2 = new javax.swing.JTable();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jTable2.setModel(new javax.swing.table.DefaultTableModel(
data, header
));
TableColumnModel tcm;
tcm = jTable2.getColumnModel();
for (int i = 0; i < header.size(); i++)
{
TableColumn tc;
tc = tcm.getColumn(i);
tc.setWidth(2);
}
任何人都可以帮助我为什么不是宽度 2 并且仍然相同?
感谢您的任何回复。