本文整理汇总了Java中java.awt.print.PrinterJob.setPrintService方法的典型用法代码示例。如果您正苦于以下问题:Java PrinterJob.setPrintService方法的具体用法?Java PrinterJob.setPrintService怎么用?Java PrinterJob.setPrintService使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.print.PrinterJob
的用法示例。
在下文中一共展示了PrinterJob.setPrintService方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: thirdPartyPrintLogic
import java.awt.print.PrinterJob; //导入方法依赖的package包/类
static void thirdPartyPrintLogic(String printerName) throws Exception {
PrinterJob printerjob = PrinterJob.getPrinterJob();
printerjob.setCopies(2);
printerjob.setJobName("myJobName");
printerjob.setPrintable(new DummyPrintable());
for (PrintService printService : PrinterJob.lookupPrintServices()) {
System.out.println("check printer name of service " + printService);
if (printerName.equals(printService.getName())) {
System.out.println("correct printer service do print...");
printerjob.setPrintService(printService);
printerjob.print();
break;
}
}
}
示例2: main
import java.awt.print.PrinterJob; //导入方法依赖的package包/类
public static void main(String[] args) {
PrintServiceStub service = new PrintServiceStub("CustomPrintService");
PrinterJob printerJob = PrinterJob.getPrinterJob();
try {
printerJob.setPrintService(service);
System.out.println("Test Passed");
} catch (PrinterException e) {
throw new RuntimeException("Test FAILED", e);
}
}
示例3: main
import java.awt.print.PrinterJob; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
// instruction dialog
Frame instruction = new Frame("Verify that no native print dialog is showed");
instruction.add(new TextArea(instructions));
instruction.pack();
instruction.show();
// test begin
PrintServiceStub service = new PrintServiceStub("test");
PrintServiceLookup.registerService(service);
PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintService(service);
job.printDialog();
System.out.println("test passed");
}
示例4: printBillForBooking
import java.awt.print.PrinterJob; //导入方法依赖的package包/类
/**
* Prints the bill associated with the provided booking on a printer.
*
* @param booking The booking to print the bill for.
*
* @throws IOException
* @throws PrinterException
*/
public void printBillForBooking(Booking booking)
throws IOException, PrinterException {
BillPdfGenerator pdfGenerator = new BillPdfGenerator(booking);
try (PDDocument pdf = pdfGenerator.getBillAsPdf()) {
PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintService(choosePrinter());
job.setPageable(new PDFPageable(pdf));
job.print();
}
}