e686. 显示打印窗口

Posted borter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e686. 显示打印窗口相关的知识,希望对你有一定的参考价值。

The print dialog allows the user to change the default printer settings such as the default printer, number of copies, range of pages, etc.

    PrinterJob pjob = PrinterJob.getPrinterJob();
    PageFormat pf = pjob.defaultPage();
    pjob.setPrintable(new PrintableClass(), pf);
    try {
        if (pjob.printDialog()) {
            pjob.print();
        }
    } catch (PrinterException e) {
    }

 

Related Examples

以上是关于e686. 显示打印窗口的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

css有用的代码片段

JavaFX自定义窗口标题栏

在片段中实现对话框时,必须在添加内容之前请求窗口功能

在控制台 VS 代码中显示所有输出

片段从一开始就没有显示 |安卓工作室