gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 01:41:47 25 4
gpt4 key购买 nike

我想在打印之前显示一个对话框,以便用户可以选择他们喜欢的打印机,并在可能的情况下更改页面设置,我在桌面环境(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();
}
}

最佳答案

您可以使用 showPrintDialog PrinterJob 的方法。

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

关于javafx - 如何在java fx和打印节点中显示打印对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28847757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com