javafx tableview 自动调整列宽。
table.getColumns().add(new TableColumn<>("Num") {{// 15%prefWidthProperty().bind(table.widthProperty().multiply(0.15));}
});
table.getColumns().add(new TableColumn<>("Filename") {
{// 20%prefWidthProperty().bind(table.widthProperty().multiply(.2));
}});
table.getColumns().add(new TableColumn<>("Path") {
{// 50%prefWidthProperty().bind(table.widthProperty().multiply(.5));
}});
table.getColumns().add(new TableColumn<>("Status") {{// 15%prefWidthProperty().bind(table.widthProperty().multiply(.15));}
});