更新扩展自定义 AbstractTableModel 的表 GUI

发布于 2024-10-16 18:11:35 字数 2044 浏览 1 评论 0原文

我创建了一个 Java GUI,它使用以下语法显示该表:

table = new JTable(new MyTableModel(columnNames,
                                    updateTable(cmbAdversary.getSelectedItem().toString(),
                                                cmbdataType.getSelectedItem().toString())));

其中,columnNames 是字符串向量 cmbadversary 和 smbdataType 是组合框的选择。

updateTable 是一种根据组合框选择返回向量向量的方法,如下所示:

static Vector updateTable(String FilterVal1 , String FilterVal2) 
{
try {
    myVector = tssc.testSeverityFunctionService(FilterVal1,FilterVal2);
} catch (Exception e) {
e.printStackTrace();}
return myVector;
}

这是扩展 AbstractTableModel 的自定义类 MyTableModel 的样子:

class MyTableModel extends AbstractTableModel 
{
    Vector columnNames = new Vector();
    Vector Fdb = new Vector();

    public MyTableModel(Vector cName,Vector rName){
        this.columnNames = cName;
        this.Fdb = rName;}
    public int getColumnCount() { // number of columns in the model.
        return columnNames.size();
    }
    public int getRowCount() { // number of rows in the model.
        return Fdb.size();
    }
    @Override
    public String getColumnName(int col) {
        return columnNames.get(col).toString();
    }
    public Object getValueAt(int row, int col) {
        Vector v = (Vector) this.Fdb.get(row);
        return v.get(col);
    }
    @Override
    public Class getColumnClass(int c) {
        Vector v = (Vector) Fdb.get(0);
        return v.get(c).getClass();}

    public boolean isCellEditable(int row, int col)
    {       return true;    }

    public void setValueAt(Vector value, int row, int col) 
    {
        for(int i=0;i<value.size();i++)
        { for(int j=0;j<columnNames.size();j++) {
                    Fdb.setElementAt(value.get(j),j);   }
        }
        fireTableCellUpdated(row, col);
    }

}

问题是,当我运行代码时,表 GUI 显示初始值但当我更改 2 个组合框中的选择并单击选择按钮时,无法更新。 顺便说一句,选择按钮调用一个实现操作侦听器的方法。

请帮帮我。我不是 Java 专业人士,但愿意学习。如果您有任何后续问题,我很乐意提供详细信息。

I created a Java GUI that displays the table using the following syntax:

table = new JTable(new MyTableModel(columnNames,
                                    updateTable(cmbAdversary.getSelectedItem().toString(),
                                                cmbdataType.getSelectedItem().toString())));

where columnNames is a Vector of Strings
cmbadversary and smbdataType are the selection od combo boxes.

and updateTable is a method that returns a Vector of Vectors depending on the combo box selection as follows:

static Vector updateTable(String FilterVal1 , String FilterVal2) 
{
try {
    myVector = tssc.testSeverityFunctionService(FilterVal1,FilterVal2);
} catch (Exception e) {
e.printStackTrace();}
return myVector;
}

This is how my custom class MyTableModel that extends AbstractTableModel looks like:

class MyTableModel extends AbstractTableModel 
{
    Vector columnNames = new Vector();
    Vector Fdb = new Vector();

    public MyTableModel(Vector cName,Vector rName){
        this.columnNames = cName;
        this.Fdb = rName;}
    public int getColumnCount() { // number of columns in the model.
        return columnNames.size();
    }
    public int getRowCount() { // number of rows in the model.
        return Fdb.size();
    }
    @Override
    public String getColumnName(int col) {
        return columnNames.get(col).toString();
    }
    public Object getValueAt(int row, int col) {
        Vector v = (Vector) this.Fdb.get(row);
        return v.get(col);
    }
    @Override
    public Class getColumnClass(int c) {
        Vector v = (Vector) Fdb.get(0);
        return v.get(c).getClass();}

    public boolean isCellEditable(int row, int col)
    {       return true;    }

    public void setValueAt(Vector value, int row, int col) 
    {
        for(int i=0;i<value.size();i++)
        { for(int j=0;j<columnNames.size();j++) {
                    Fdb.setElementAt(value.get(j),j);   }
        }
        fireTableCellUpdated(row, col);
    }

}

The problem is that when I run the code, the table GUI show me initial values but fails to update when I change the selection in the 2 comboboxes and click the selection button.
The Selection button, btw, calls a method which implements the action listener.

Please help me out. Am no pro in Java, but willing to learn. If you have any followup qs., I'll be happy to provide details.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2024-10-23 18:11:35

您的解决方案似乎过于复杂。如果我了解基础知识,用户从组合框中选择一个值,然后根据选择将一些数据加载到表中。

无需创建自定义表模型即可执行此操作。

TableModel 包含数据。如果您想更改数据,一种方法是简单地创建一个新的 TableModel。因此,您将一个 ActionListener 添加到组合框中。选择某个项目后,您将检索数据并将数据加载到向量或数组中。使用此数据,您可以创建一个新的 TableModel,并用两行代码更新 JTable:

DefaultTableModel model = new DefaultTableModel(...);
table.setModel( model );

如果您需要自定义模型以覆盖 getColumnClass() 或 isCellEditable() 方法,那么您应该扩展 DefaultTableModel。我认为没有必要实施整个模型。

Your solution seems overly complicated. If I understand the basics, the user chooses a value from a combo box, then based on the selection some data is loaded into the table.

There is no need to create a custom table model to do this.

A TableModel contains data. If you want to change the data, then one way to do this is to simply create a new TableModel. So you add an ActionListener to your combo box. When an item is selected you retrive your data and load the data into an Vector or an Array. Using this data you can create a new TableModel and update the JTable in two lines of code:

DefaultTableModel model = new DefaultTableModel(...);
table.setModel( model );

If you need to customize the model to override the getColumnClass() or isCellEditable() methods, then you should extend the DefaultTableModel. I don't see any need to implement the whole model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文