本文整理匯總了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();
}
}