如何重新排序并包含新列?

时间:2017-06-10 00:20:08

标签: python

有人可以帮我解决下面的谜题吗? field1是有序的,晕被拼写错误,因此被校正为Hello,与世界相同,并成为大写。

Have added the screen shot for reference

for (int i = 0; i < data.numAttributes(); i++) {
    TableColumn<Instance, String> column 
        = new TableColumn<Instance,String>(data.attribute(i).name());
    final int attIndex = i ;
    column.setCellValueFactory(cellData -> 
        new SimpleStringProperty(cellData.getValue().toString(attIndex)));
    atrributes.add(column);

}

0 个答案:

没有答案