在JAVA Fx中自动更新Tableview

时间:2015-12-08 17:07:57

标签: java tableview javafx-8

在我的项目中,当客户端断开连接时,服务器将从可观察列表中删除该名称,并且tableview应该停止显示该名称。但是tableview没有更新。 控制器类

public class Controller {

@FXML
public TableView tableView;

@FXML
private TableColumn<clientLoginData,String> client;
@FXML
private TableColumn<clientLoginData,String> activeTime;
void initialize(ObservableList<clientLoginData> data)
{
    client.setCellValueFactory(new PropertyValueFactory<>("clientName"));
    client.setCellFactory(TextFieldTableCell.<clientLoginData>forTableColumn());
    activeTime.setCellValueFactory(new PropertyValueFactory<>("time"));
    activeTime.setCellFactory(TextFieldTableCell.<clientLoginData>forTableColumn());
    tableView.setItems(data);
    tableView.setEditable(true);

}

}

主要班级

public class Main extends Application{
volatile public  ObservableList<clientLoginData> data= FXCollections.observableArrayList();
public Controller controller;

@Override
public void start(Stage primaryStage) throws Exception {
    FXMLLoader loader = new FXMLLoader();
    loader.setLocation(getClass().getResource("server.fxml"));
    Parent root = loader.load();
    data.addAll(new clientLoginData((new SimpleStringProperty("john")),new SimpleStringProperty(ZonedDateTime.now().getHour()+":"+ZonedDateTime.now().getMinute())));
    controller=loader.getController();
    controller.initialize(data);
    primaryStage.setTitle("Server");
    primaryStage.setScene(new Scene(root, 600, 400));
    primaryStage.show();
    Thread t=new Thread(new messengerServer(this));
    t.start();



}

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

更新课程

public class messengerReadThread implements Runnable {
private Thread thr;
private NetworkUtil nc;
public Hashtable<SimpleStringProperty, NetworkUtil> table;
SimpleStringProperty  oldName;
Main main;


public messengerReadThread(NetworkUtil nc, Hashtable<SimpleStringProperty, NetworkUtil> table, SimpleStringProperty s, Main main) {
    this.nc = nc;
    this.thr = new Thread(this);
    thr.start();
    this.table=table;
    oldName=s;
    this.main=main;
}

public void run() {

    try {
        while(true) {
            String s1=(String)nc.read();
            StringTokenizer st=new StringTokenizer(s1);
            if(st.nextToken().equals("Name"))
            {
                String sn=s1.substring(5,s1.length());
                NetworkUtil n1=table.get(oldName);
                table.remove(oldName);
                oldName=new SimpleStringProperty(sn);
                table.put(oldName, n1);
                main.data.add(new clientLoginData(oldName,new SimpleStringProperty(ZonedDateTime.now().getHour()+":"+ZonedDateTime.now().getMinute())));
            }
            else
            {
                System.out.println("here it is"+s1);
            }
        }
    } catch(Exception e) {
        System.out.println("disconnected "+oldName.toString());
        main.data.remove(oldName);
        //System.out.println(main.data.contains(oldName));

        main.controller.tableView.refresh();//the tableview should update

    }
    nc.closeConnection();
}
}

2 个答案:

答案 0 :(得分:0)

我应该对该代码进行一些修改,比如避免使用那些&#34;静态引用&#34;,通过定义ObservableList并在Controller中移动你的更新代码,这样你就可以拥有一个2类代码,Main班级和你的控制器...但我会尽量保持简单。

首先,您需要在控制器内定义ObservableList。

然后放置&#34;更新&#34;方法中控制器内的代码。我建议你使用Task&lt;&gt;保持控制器在JavaFX线程中更新。

尝试这样的事情:

private void updateTable(){ 

    Task<Void> myUpdatingTask=new Task<Void>() {
       @Override
       protected Void call() throws Exception {
        //Your Updating Code Here
       }
    }

    //and then you run it like this:
    Thread hilo=new Thread(myUpdatingTask);
    hilo.setDaemon(true);
    hilo.start();
}

然后,从Initialize Method中删除参数,并使用@FXML注释将其定义为private:

@FXML
private void initialize(){
     //Your Stuff to initialize
     //here is were you fill your table like you did in the Main
     //and don't forget to call you updateTable Method
     this.updateTable();
}

答案 1 :(得分:-1)

由于@kleopatra指出这是一个肮脏的黑客,我将把它装饰成一个肮脏的黑客。 ****************************肮脏的黑客******************** ********************* 尝试隐藏列并再次显示它,并且您的tableview应该刷新

相关问题