如何用List <Object>的行填充TableView?
在我的模型中,我有Row
和Cell
对象,它们代表从文件中读取的表格数据。 每Row
可以返回单元格列表。 我想用Cell.toString()
值填充TableView,如下所示:
for (Row row : rows) {
// Add row to TableView.
for (Cell cell : row.getCells()) {
// Add cell.toString() in a current TableView row.
}
}
我发现的大多数教程处理与某些对象的字段相关联的列,但我只想显示数据而不知道列代表什么。
实际上,您的问题归结为您需要动态数量的列,这不是TableView
最初制作的列:它不呈现对象关系 - 它被设计为显示属性,这些属性对于TableView
(每个对象的键/属性都是相同的 - 例如一个人的姓名,年龄等)
下面我实现了一个简单的方法,这是一个完全可以实现的方法。
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.stage.Stage;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class DynamicTableViewColumnCount extends Application
{
public static void main(String[] args)
{
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception
{
TableView<Row> tableView = new TableView<>();
// make sample data
List<Row> rows = makeSampleData();
int max = getMaxCells(rows);
makeColumns(max, tableView);
tableView.getItems().addAll(rows);
// Boilerplate code for showing the TableView
Scene scene = new Scene(tableView, 1000, 1000);
primaryStage.setScene(scene);
primaryStage.show();
}
public void makeColumns(int count, TableView<Row> tableView)
{
for (int m = 0; m < count; m++)
{
TableColumn<Row, String> column = new TableColumn<>(Integer.toString(m));
column.setCellValueFactory(param -> {
// int index = Integer.parseInt(param.getTableColumn().getText());
int index = param.getTableView().getColumns().indexOf(param.getTableColumn());
List<Cell> cells = param.getValue().getCells();
return new SimpleStringProperty(cells.size() > index ? cells.get(index).toString() : null);
});
tableView.getColumns().add(column);
}
}
public int getMaxCells(List<Row> rows)
{
int max = 0;
for (Row row : rows)
max = Math.max(max, row.getCells().size());
return max;
}
public List<Row> makeSampleData()
{
Random random = new Random();
List<Row> rows = new ArrayList<>();
for (int i = 0; i < 16; i++)
{
Row e = new Row();
int jMax = random.nextInt(6); // from 0 to 5
for (int j = 0; j <= jMax; j++)
{
e.getCells().add(new Cell(Long.toHexString(random.nextLong())));
}
rows.add(e);
}
return rows;
}
static class Row
{
private final List<Cell> list = new ArrayList<>();
public List<Cell> getCells()
{
return list;
}
}
static class Cell
{
private final String value;
public Cell(String value)
{
this.value = value;
}
@Override
public String toString()
{
return value;
}
}
}
链接地址: http://www.djcxy.com/p/80151.html