扩展AbstractTableModel的表中的JCheckbox出现问题

时间:2018-10-25 08:23:28

标签: java swing jcheckbox tablecellrenderer abstracttablemodel

FileSystemModel类为我提供了系统文件的列表。 我想使用该复选框来选择要下载的文件,但是我不能编辑此复选框。 我要提示我做错了什么。

MyTableModel.java

public class MyTableModel extends AbstractTableModel{
private File dir;
private String[] filenames;
private static final long serialVersionUID = -2929662905556163705L;

public DownloadTableModel(File dir) {
    this.dir = dir;
    this.filenames = dir.list();
}

private ResourceBundle resourceBundle = ResourceBundle.getBundle("MessageBundle", Locale.forLanguageTag("pl"));

protected String[] columns = new String[] {"fileName","fileSize","checked","progress"};

@SuppressWarnings("rawtypes")

protected Class[] columnClasses = {FileSystemModel.class , Long.class, JCheckBox.class, JProgressBar.class};
  

FileSystemModel类为我提供了系统文件的列表。

public int getColumnCount() {
    return columns.length;
}

public int getRowCount() {
    return filenames.length;
}

public String getColumnName(int col) {
    return columns[col].toString();
}

public Class getColumnClass(int c) {
    switch (c) {
    case 0:
        return String.class;
    case 1:
        return Long.class;
    case 2:
        return Boolean.class;
    case 3:
        return Float.class;
    default:
        return null;
    }
}

public Object getValueAt(int row, int col) {
    File f = new File(dir, filenames[row]);

    switch (col) {
    case 0:
        return filenames[row];
    case 1:
        return new Long(f.length());
    case 2:
        return new Boolean(false);
    case 3:
        return new Float(50);
    default:
        return null;
    }
}

public boolean isCellEditable(int row, int col) {
    switch (col) {
    case 0:
        return false;
    case 1:
        return false;
    case 2:
        return true;
    case 3:
        return false;
    default:
        return false;
    }
}   

public void setValueAt(String aValue, int row, int column) {
      if ( column == 2) {
        filenames[row] = aValue;
        fireTableCellUpdated(row, column);
        System.out.println(aValue + " " + row);
      }
    }

}

CheckBoxRenderer.java

public class CheckBoxRenderer extends JCheckBox implements TableCellRenderer {

private static final long serialVersionUID = -1892085041343659845L;

private static final Border NO_FOCUS = BorderFactory.createEmptyBorder(1, 1, 1, 1);

public CheckBoxRenderer() {
    super();
    setHorizontalAlignment(JCheckBox.CENTER);
    setBorderPainted(true);
    setOpaque(true);
}

public Component getTableCellRendererComponent(JTable table, Object value,
        boolean isSelected, boolean hasFocus, int row, int column) {

    Color alternate = UIManager.getColor("Table.alternateRowColor");
    Color normal = new Color(table.getBackground().getRGB());

    if (isSelected) {
        setForeground(table.getSelectionForeground());
        setBackground(table.getSelectionBackground());
    } else {
        setForeground(table.getForeground());
        setBackground(alternate != null && row % 2 == 0 ? normal : alternate);
    }

    setEnabled(table.isCellEditable(row, column));
    setSelected(value != null && (Boolean) value);

    if (hasFocus) {
        setBorder(UIManager.getBorder("Table.focusCellHighlightBorder"));
    } else {
        setBorder(NO_FOCUS);
    }

    return this;
}
}

MainGUI

在主GUI中,将其添加到面板中

fileDir = new File(System.getProperty("user.dir"));
    myTableModel = new MyTableModel(fileDir);
    jTable = new JTable(downloadModel);

enter image description here

1 个答案:

答案 0 :(得分:0)

我看不到在TableModel中存储数据的位置。您所拥有的只是一个文件名数组。您不必为每行存储布尔值就知道是否已选择它。

\U

在您的&方法中,您将继续创建一个新的File对象。这不是很有效,并且表会不断调用getValueAt(...)方法。例如,每次突出显示一行时,都需要将上一行重新绘制为未选中状态,然后将当前行重新绘制为选中状态。

因此File f = new File(dir, filenames[row]); 方法应尽可能高效。

那我该怎么做:

  1. 创建一个自定义TableModel,其中包含要在表中显示的所有值以及该复选框的布尔值。

  2. 暂时忘记自定义渲染器/编辑器。首先使用布尔列的默认渲染器/编辑器使逻辑起作用。证明基本逻辑有效。然后,如果您认为需要进行渲染,请创建一个自定义渲染器。然后,如果您有问题,便知道问题出在哪里。

您可以签出Row Table Model来获取基于自定义对象创建TableModel的分步示例。