gpt4 book ai didi

java - Row 不会使用 vector 添加到我的 JTable 的末尾

转载 作者:行者123 更新时间:2023-12-02 03:35:35 26 4
gpt4 key购买 nike

我正在创建一个 Swing 应用程序来工作,但我的 JTable 遇到了问题。

该过程是检查文件是否存在,如果存在,则从文件中检索信息并填充 JTable。这工作得很好。

我在文本字段中输入数据,从下拉框中选择,当我单击“保存”按钮时,我将信息写入文件(完成后没有问题),创建文件后,我希望该行添加到我的表格末尾。这就是我遇到问题的地方。

我最终调用了 OutputTable 中的 addRow 方法,传递用户输入的数据。数据正确存储在 vector 中,如下所示:

d1 is[999999999, 27-May-2016, asdfasdf, OCOB, UA2, 1, asdf,     sadsadfasdf, IU2, 1, 28-May-2016, In Progress]
d2 is[999999999, 27-May-2016, asdfasdf, OCOB, UA2, 1, asdf, sadsadfasdf, IU2, 1, 28-May-2016, In Progress]

但是我的 dtm.addRow(data) 不会将该行添加到表中。

有人可以帮忙吗?

这是我的类,它从文件中检索数据以填充应用程序开头的表。操作由按钮执行。

我的addRow方法就在这个类中。

public class OutputTable {

@SuppressWarnings({ "rawtypes", "unchecked" })
public static void populateTable(Vector data){

Vector columnName = new Vector(12);

columnName.addElement("ID");
columnName.addElement("<HTML>DATE <BR/>Retrieve");
columnName.addElement("<HTML>Name of <BR/>Module");
columnName.addElement("<HTML>Type of <BR/>Module");
columnName.addElement("<HTML>Environment <BR/>retrieve from");
columnName.addElement("<HTML>Stage <BR/>retrieve from");
columnName.addElement("<HTML>Working <BR/>location");
columnName.addElement("<HTML>Description <BR/>of changes");
columnName.addElement("<HTML>Environment <BR/>moved to");
columnName.addElement("<HTML>Stage <BR/>move to");
columnName.addElement("<HTML>Date of the <BR/>endevor");
columnName.addElement("<HTML>Current <BR/>Work <BR/>Status");

DefaultTableModel dtm = new DefaultTableModel(data, columnName);

final JTable table = new JTable();

table.setModel(dtm);
table.setFillsViewportHeight(true);
table.setPreferredScrollableViewportSize(table.getPreferredSize());

JScrollPane scrollPane = new JScrollPane(table);
table.getTableHeader().setPreferredSize(new Dimension(scrollPane.getWidth(),60));
scrollPane.setViewportBorder(UIManager.getBorder("Table.scrollPaneBorder"));
scrollPane.setBounds(10, 425, 875, 195);

EndevorChanges.frmEndevorChanges.getContentPane().add(scrollPane);

}

public static void addRow(String UserID, String DateRtrv, String ModRtrv, String ModType, String EnvFrom, String StgFrom, String WrkngLct, String Desc, String EnvTo, String StgTo, String DateTo, String WrkSts) {

System.out.println("Im inside the addrow method.");

Vector<Vector<String>> data = new Vector<Vector<String>>();
Vector<String> d = new Vector<String>();
Vector columnName = new Vector(12);
String[] strngArray = {UserID, DateRtrv, ModRtrv, ModType, EnvFrom, StgFrom, WrkngLct, Desc, EnvTo, StgTo, DateTo, WrkSts};

/* columnName.addElement("ID");
columnName.addElement("<HTML>DATE <BR/>Retrieve");
columnName.addElement("<HTML>Name of <BR/>Module");
columnName.addElement("<HTML>Type of <BR/>Module");
columnName.addElement("<HTML>Environment <BR/>retrieve from");
columnName.addElement("<HTML>Stage <BR/>retrieve from");
columnName.addElement("<HTML>Working <BR/>location");
columnName.addElement("<HTML>Description <BR/>of changes");
columnName.addElement("<HTML>Environment <BR/>moved to");
columnName.addElement("<HTML>Stage <BR/>move to");
columnName.addElement("<HTML>Date of the <BR/>endevor");
columnName.addElement("<HTML>Current <BR/>Work <BR/>Status");
*/
DefaultTableModel dtm = new DefaultTableModel(data, columnName);

JTable table = new JTable();

//table.setModel(dtm);

System.out.println("the data is: " + data.toString());

for (int lmnts = 0; lmnts < 12; lmnts++){
d.add(strngArray[lmnts]);
System.out.println("element" + lmnts + " value is: " + strngArray[lmnts]);
System.out.println("d1 is" + d);
}
data.add(d);

System.out.println("d2 is" + d);

dtm.addRow(data);
//dtm.insertRow(4, data);

dtm.fireTableDataChanged();

table.repaint();

System.out.println("at the end of the method");

}

}

最佳答案

您的行实际上被添加到 JTable 的 TableModel 中,但问题是它被添加到错误 JTable 中。当前显而易见的问题:

public class OutputTable {

public static void populateTable(Vector data){

// .... code removed for brevity's sake

// you create a *local* DefaultTableModel variable here. It is only visible within this method
DefaultTableModel dtm = new DefaultTableModel(data, columnName);

// Likewise, this JTable variable is *local*
final JTable table = new JTable();

// .....
}

public static void addRow(String UserID, String DateRtrv, String ModRtrv, String ModType, String EnvFrom, String StgFrom, String WrkngLct, String Desc, String EnvTo, String StgTo, String DateTo, String WrkSts) {

// .....

// this guy is a completely new unique DefaultTableModel object, again placed
// within a local variable, one only seen within this method.
DefaultTableModel dtm = new DefaultTableModel(data, columnName);

// and a new local JTable
JTable table = new JTable();


// here you "repaint" this JTable, and it's not even displayed in your GUI
table.repaint();

}
}
  • 您在方法中声明变量并分配表模型和 JTable,这意味着这些变量在此方法中可见,而在其他地方不可见。
  • 然后,您将在一个单独的方法中创建一个 JTable 和新表模型,更新模型,并期望可视化表(一个完全独立且唯一的对象)神奇地更新 --这不会发生。
  • 在静态方法中执行任何此类操作都过度使用了静态。

建议:

  • 创建私有(private)实例 JTable 和 DefaultTableModel 变量。
  • 创建对象并在构造函数或实例方法中将它们分配给这些变量。
  • 当您需要更新模型时,请使用上面的变量,并添加一行。问题解决了!
  • 请注意,尝试使用静态变量是一个不好的解决方案。说真的,不要去那里。

另外:

  • 尝试将大部分代码从静态领域转移到实例领域。
  • main 方法应该很短,并且应该只用于创建关键对象,然后启动它们运行,仅此而已。
  • 您似乎使用了 null 布局和 setBounds(...)。虽然 null 布局和 setBounds() 对于 Swing 新手来说似乎是创建复杂 GUI 的最简单、最好的方法,但创建的 Swing GUI 越多,使用它们时遇到的困难就越严重。当 GUI 调整大小时,它们不会调整组件的大小,它们是增强或维护的皇家女巫,当放置在滚动 Pane 中时,它们会完全失败,在所有平台或与原始分辨率不同的屏幕分辨率上查看时,它们看起来非常糟糕.
  • 您正在以危险且令人困惑的方式混合模型 View 代码。如果您可以将这些部分完全分开,那么您将可以更轻松地调试和增强程序。例如,表模型创建和修改代码应该与将 JTables 和 JScrollPanes 添加到 GUI 的代码分开。

关于java - Row 不会使用 vector 添加到我的 JTable 的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37489533/

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