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. 显示打印窗口的主要内容,如果未能解决你的问题,请参考以下文章