作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在打印之前显示一个对话框,以便用户可以选择他们喜欢的打印机,并在可能的情况下更改页面设置,我在桌面环境(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/
我是一名优秀的程序员,十分优秀!