如何在java fx和print节点中显示打印对话框

时间:2015-03-04 06:14:01

标签: javafx

我想在打印前显示一个对话框,以便用户可以选择自己喜欢的打印机,并在可能的情况下更改页面设置, 我在桌面环境(Windows 8 64位)中使用Java 8 update 31,我目前的代码是这样的

Node node = new Circle(100, 200, 200);
PrinterJob job = PrinterJob.createPrinterJob();
if (job != null) {
boolean success = job.printPage(node);
if (success) {
    job.endJob();
}
}

1 个答案:

答案 0 :(得分:11)

您可以使用PrinterJob的showPrintDialog方法。

PrinterJob job = PrinterJob.createPrinterJob();
if (job != null && job.showPrintDialog(node.getScene().getWindow())){
    boolean success = job.printPage(node);
    if (success) {
        job.endJob();
    }
}