當前位置: 首頁>>代碼示例>>Java>>正文


Java PrinterJob.setPageable方法代碼示例

本文整理匯總了Java中java.awt.print.PrinterJob.setPageable方法的典型用法代碼示例。如果您正苦於以下問題:Java PrinterJob.setPageable方法的具體用法?Java PrinterJob.setPageable怎麽用?Java PrinterJob.setPageable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.awt.print.PrinterJob的用法示例。


在下文中一共展示了PrinterJob.setPageable方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: printDocument

import java.awt.print.PrinterJob; //導入方法依賴的package包/類
public static void printDocument() throws IOException, PrinterException
{	
	
	PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();

    pras.add(Sides.TWO_SIDED_SHORT_EDGE);
	PDDocument input = PDDocument.load(new File("Karteikarten.pdf"));
	
	PrinterJob job = PrinterJob.getPrinterJob();
	job.setPageable(new PDFPageable(input));
	if (job.printDialog(pras)) {
	    job.print(pras);
	}
	
}
 
開發者ID:CoffeeCodeSwitzerland,項目名稱:Lernkartei_2017,代碼行數:16,代碼來源:Printer.java

示例2: main

import java.awt.print.PrinterJob; //導入方法依賴的package包/類
public static void main(String args[]) throws Exception {
    String[] instructions
            = {
                "Select Pages Range From instead of All in print dialog. ",
                "Then select Print"
            };
    SwingUtilities.invokeAndWait(() -> {
        JOptionPane.showMessageDialog((Component) null,
                instructions, "Instructions",
                JOptionPane.INFORMATION_MESSAGE);
    });
    HashPrintRequestAttributeSet as = new HashPrintRequestAttributeSet();
    PrinterJob j = PrinterJob.getPrinterJob();
    j.setPageable(new PrintAttributeUpdateTest());
    as.add(DialogTypeSelection.NATIVE);
    j.printDialog(as);
    if (as.containsKey(PageRanges.class) == false) {
        throw new RuntimeException("Print Dialog did not update "
                + " attribute set with page range");
    }
    Attribute attrs[] = as.toArray();
    for (int i = 0; i < attrs.length; i++) {
        System.out.println("attr " + attrs[i]);
    }
    j.print(as);
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:27,代碼來源:PrintAttributeUpdateTest.java

示例3: 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

示例4: printTest

import java.awt.print.PrinterJob; //導入方法依賴的package包/類
private static void printTest() {
    PrinterJob pj = PrinterJob.getPrinterJob();
    PageableHandler handler = new PageableHandler();
    pj.setPageable(handler);

    PrintRequestAttributeSet pSet =  new HashPrintRequestAttributeSet();
    pSet.add(DialogTypeSelection.COMMON);
    pj.printDialog(pSet);
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:10,代碼來源:PrintDlgPageable.java


注:本文中的java.awt.print.PrinterJob.setPageable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。