这是我的代码。
public class TableViewByColumn extends Application{
@Override
public void start(Stage primaryStage) throws Exception {
ArrayList<Integer> intValues = Consing.getInstance().getBook_ID();
ArrayList<String> stringValues = Consing.getInstance().getBookName();
TableView<Integer> table = new TableView<>();
for(int i=0; i<intValues.size()& i<stringValues.size(); i++){
table.getItems().add(i);
}
TableColumn<Integer,String> stringColunm = new TableColumn<>("Name");
stringColunm.setCellValueFactory(cellData -> {
Integer rowIndex = cellData.getValue();
System.out.println(rowIndex);
return new ReadOnlyStringWrapper(stringValues.get(rowIndex));
});
TableColumn<Integer,Number> intColunm = new TableColumn<>("Value");
intColunm.setCellValueFactory(cellData -> {
Integer rowIndex = cellData.getValue();
return new ReadOnlyIntegerWrapper(intValues.get(rowIndex));
});
table.getColumns().add(intColunm);
table.getColumns().add(stringColunm);
primaryStage.setScene(new Scene(new BorderPane(table),600,600));
primaryStage.show();
}
book_ids 和 names 不等于表中的。