setCellValueFactory用于javaFX中的动态列数

时间:2015-02-25 23:17:54

标签: java javafx

我创建了一个日志记录GUI,我的主视图是一个TableView,其中列名是从配置文件加载的。

String format="Type:Date:Message";
//OR
String format="A:Different:Number:Of:Column";

String[] tok = format.split(":");
logTable.getColumns().clear();
for (String s : tok) {
    TableColumn<LogLine, String> col = new TableColumn<LogLine, String>(s);
    logTable.getColumns().add(col);
}

这可以按预期工作。 (我在应用中看到了更正列标题)。 然后我想为每列添加一个CellValueFactory:

    ObservableList<TableColumn<LogLine, ?>> colList =logTable.getColumns();

    for (int i = 0; i < colList.size(); i++)
    {
        colList.get(i).setCellValueFactory(cellData -> cellData.getValue().getTokens()[i]);
        // ...
    }

这不起作用,因为java抱怨我没有在lambda函数中定义:

Caused by: java.lang.Error: Unresolved compilation problem: 
    Local variable i defined in an enclosing scope must be final or effectively final

有什么想法吗?这可能是一个糟糕的方式,我是Java / JavaFX的新手。

非常感谢!

1 个答案:

答案 0 :(得分:0)

只需将i复制到有效的最终变量:

for (int i = 0; i < colList.size(); i++)
{
    int index = i ;
    colList.get(i).setCellValueFactory(cellData -> cellData.getValue().getTokens()[index]);
    // ...
}