我正在学习JavaFX。我创建了TableView
并用数据填充了它。我添加了一个按钮,当单击它时,可以打印表格内容。
以下是整个代码:
`public final class TableViewSample2 extends Application {
private TableView<Person> table;
private ObservableList<Person> list;
public void createTable() {
table = new TableView<>();
table.setEditable(true);
list = FXCollections.observableArrayList(
new Person("Jacob", "Smith", "jacob.smith@example.com"),
new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
new Person("Ethan", "Williams", "ethan.williams@example.com"),
new Person("Emma", "Jones", "emma.jones@example.com"),
new Person("Michael", "Brown", "michael.brown@example.com"));
//associating data with the table columns
TableColumn firstNameCol = new TableColumn("First Name");
firstNameCol.setMinWidth(100);
firstNameCol.setCellValueFactory(
new PropertyValueFactory<Person, String>("name"));
TableColumn SurnameCol = new TableColumn("Surname");
SurnameCol.setMinWidth(100);
SurnameCol.setCellValueFactory(
new PropertyValueFactory<Person, String>("surname"));
TableColumn emailCol = new TableColumn("Emil");
emailCol.setMinWidth(100);
emailCol.setCellValueFactory(
new PropertyValueFactory<Person, String>("email"));
table.setItems(list);
table.getColumns().addAll(firstNameCol, SurnameCol, emailCol);
}
@Override
public void start(Stage primaryStage) {
StackPane root = new StackPane();
Scene scene = new Scene(root, 300, 250);
this.createTable();
Label label = new Label("My Address Book");
Button button = new Button("Print");
//printing
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println(" can I print?");
PrinterJob printerJob = PrinterJob.createPrinterJob();
if (printerJob.showPrintDialog(primaryStage) && printerJob.printPage(table))
{
printerJob.endJob();
System.out.println("printed");
}
}
});
final VBox vbox = new VBox();
vbox.setSpacing(5);
vbox.setPadding(new Insets(10, 0, 0, 10));
vbox.getChildren().addAll(label, table, button);
root.getChildren().add(vbox);
primaryStage.setTitle("Sample TableView");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}}
当我运行程序时,表格会按原样显示。完善。但是,当我单击打印按钮时,没有任何事情发生。当我看到这段代码时,我正在研究如何打印TableView内容。我试图在控制台中输出一些消息,但没有显示任何消息。
我该如何解决这个问题?
答案 0 :(得分:1)
我从oracle网站复制了你的代码(以及类Person
:),它完美无缺。正如ItachiUchiha评论的那样,我也假设.createPrinterJob()不返回一个对象。也许你没有安装任何打印机。
NetBeans显示了旧HP打印机的一些详细信息:
答案 1 :(得分:0)
由于您已在使用primaryStage,因此其所有者将为null
尝试将primaeyStage.getOwner()
替换为primaryStage
button.setOnAction((ActionEvent event) -> {
System.out.println(" can I print?");
PrinterJob printerJob = PrinterJob.createPrinterJob();
if (printerJob.showPrintDialog(primaryStage) && printerJob.printPage(table)) {
printerJob.endJob();
System.out.println("printed");
}
});