gpt4 book ai didi

java - 在 JTable 中显示 JCheckBox

转载 作者:行者123 更新时间:2023-12-01 18:31:54 26 4
gpt4 key购买 nike

我有一个 Jtable,我想在其中的一列中添加一个 JCheckbox。但是,当我创建 JCheckbox 对象时,javax.swing.JCheckBox 显示在列中。请参阅图像。你能告诉我如何修改吗?我到处搜索但似乎找不到任何解决方案。谢谢。

enter image description here

最佳答案

  1. 不要向 TableModel 添加组件,这不是 TableModel 的责任
  2. 您需要指定列的类类型。假设您使用的是 DefaultTableModel,您可以简单地用一堆 boolean 值填充列,这应该可以工作 - 测试后,您将需要重写 getColumnClass 方法DefaultTableModel (或任何 TableModel 实现),并确保对于“复选框”列,它返回 Boolean.class

参见How to use tables了解更多详情

例如...

enter image description here

import java.awt.EventQueue;
import java.util.Random;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.table.DefaultTableModel;

public class TestCardLayout {

public static void main(String[] args) {
new TestCardLayout();
}

public TestCardLayout() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}

Random rnd = new Random();
DefaultTableModel model = new DefaultTableModel(new Object[]{"Check boxes"}, 0) {

@Override
public Class<?> getColumnClass(int columnIndex) {
return Boolean.class;
}

};
for (int index = 0; index < 10; index++) {
model.addRow(new Object[]{rnd.nextBoolean()});
}
JTable table = new JTable(model);

final JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JScrollPane(table));
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

}

关于java - 在 JTable 中显示 JCheckBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23822376/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com