当前位置: 首页>>代码示例>>Java>>正文


Java PrinterJob.setPrintService方法代码示例

本文整理汇总了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;
        }
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:16,代码来源:DummyPrintTest.java

示例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);
    }
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:11,代码来源:SetPrintServiceTest.java

示例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");
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:15,代码来源:PrintDialog.java

示例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();
    }
}
 
开发者ID:maillouxc,项目名称:git-rekt,代码行数:20,代码来源:BillService.java


注:本文中的java.awt.print.PrinterJob.setPrintService方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。