所以我有一个大面板,一个JTable的cardlayout:

tbm = new DefaultTableModel();
tbm.addColumn("Account Number");
tbm.addColumn("PIN");
tbm.addColumn("Access Level");
tbm.addColumn("Balance");
table = new JTable(tbm);
JScrollPane scrollPane = new JScrollPane(table);


在actionPerformed下,我尝试将一些数据加载到表中,如下所示:

else if(event.getSource() == listallButton) {
      String query = "SELECT * FROM ATM";
      String delimiter = ",";
      String input = "go";
      int count=0;
      al = new ArrayList<String>();

          try {
              communicationObject = new DataObject();
              communicationObject.setMessage(query);
              Socket socketToServer = new Socket("sunlab32.njit.edu",31414);
              ObjectOutputStream myOutputStream = new ObjectOutputStream(socketToServer.getOutputStream());
              ObjectInputStream myInputStream = new ObjectInputStream(socketToServer.getInputStream());
              myOutputStream.writeObject(communicationObject);
              communicationObject = (DataObject)myInputStream.readObject();
              input = communicationObject.getMessage();
              if (input != "stop") {
                  al.add(input);
                  data[count] = input;
                  count++; }

              for (int i=0;i<data.length;i++) {
                  row = data[i];
                  temp = row.split(delimiter);
                  tbm.addRow(new String[] {temp[0],temp[1],temp[2],temp[3]}); }
              tbm.fireTableDataChanged();
              table.repaint();


现在我的问题是在加载所有行之后,该表不会重新绘制...有什么建议吗?

最佳答案

tbm.addModel应该是激发表已更改的事件,因此tbm.fireTableDataChanged是不必要的。

添加所有行后,您可以尝试执行此操作以强制其自行绘制。

table.setModel(tbm);


无关:

Swing是一个单线程事件模型,这意味着您正在执行的任务将阻止UI更新。

我建议您将数据加载移至SwingWorker,并在完成更改后将数据推送到UI。看看这个tutorial

08-17 16:34
查看更多