Oracleのドキュメント のPersonクラスを使用するなどして、TableViewに行を追加する例をインターネットで参照しています。
しかし、可変数の列があるため、Person(またはその他の)Beanビジネスオブジェクトにバインドできません。
Oracleの例では、列をプロパティ名にバインドする方法を示しますが、そのためには、行ではなく列を追加する方法のみを示します。
私の質問は、JavaFX 8 TableViewに任意の列または行、あるいはその両方を動的に追加するHello、Worldの例を誰かに教えてもらえますか?
データ型にList<String>
(たとえば)を使用し、リストにインデックスを付けるコールバックとしてセル値ファクトリを設定します。
たとえば、これは任意のタブ区切りのテキストファイルから構成されるTableView<List<String>>
を作成します。ファイルのすべての行に同じ数の要素が必要なわけではありません(空白で埋められます)。 (エスケープされたタブなどはサポートされていません):
public TableView<List<String>> readTabDelimitedFileIntoTable(Path file) throws IOException {
TableView<List<String>> table = new TableView<>();
Files.lines(file).map(line -> line.split("\t")).forEach(values -> {
// Add extra columns if necessary:
for (int i = table.getColumns().size(); i < values.length; i++) {
TableColumn<List<String>, String> col = new TableColumn<>("Column "+(i+1));
col.setMinWidth(80);
final int colIndex = i ;
col.setCellValueFactory(data -> {
List<String> rowValues = data.getValue();
String cellValue ;
if (colIndex < rowValues.size()) {
cellValue = rowValues.get(colIndex);
} else {
cellValue = "" ;
}
return new ReadOnlyStringWrapper(cellValue);
});
table.getColumns().add(col);
}
// add row:
table.getItems().add(Arrays.asList(values));
});
return table ;
}
ちょっと不格好ですが、このサンプルコードはうまくいくようです:
TableView table = new TableView<>();
private char nextChar = 'A';
private void addColumn(TableView table) {
String mapChar = String.valueOf(nextChar++);
TableColumn<Map, String> column = new TableColumn<>("Class " + mapChar);
column.setCellValueFactory(new MapValueFactory(mapChar));
column.setMinWidth(130);
column.setCellFactory(cellFactoryForMap);
table.getColumns().add(column);
}
private void addRow(TableView table) {
ObservableList<Map> allData = table.getItems();
int offset = allData.size();
Map<String, String> dataRow = new HashMap<>();
for (int j = 0; j < table.getColumns().size(); j++) {
String mapKey = Character.toString((char) ('A' + j));
String value1 = mapKey + (offset + 1);
dataRow.put(mapKey, value1);
}
allData.add(dataRow);
}
}