9

我刚刚开始学习如何在 Java/Swing 中打印窗口。(编辑:刚刚找到Java 打印指南

当我这样做时:

protected void doPrint() {
    PrinterJob job = PrinterJob.getPrinterJob();
    job.setPrintable(this);
    boolean ok = job.printDialog();
    if (ok) {
        try {
            job.print();
        } 
        catch (PrinterException ex) {
            ex.printStackTrace();
        } 
        finally {

        }
    }
}

我得到这个打印机对话框(在 Windows XP 上):

在此处输入图像描述

如何更改页面范围使其不是 1-9999?

编辑:使用Pageable/Book设置页面范围(正如@t_barbz 有用地指出的那样)需要一个PageFormat,在这种情况下我有一个catch-22,因为我希望打印对话框选择它,而我似乎没有从打印对话框中获取返回值。

4

2 回答 2

4

对于页面范围,我相信您需要使用 PrinterJob 的 setPageable(Pageable document) 方法。看起来它应该可以解决问题。

protected void doPrint() {
PrinterJob job = PrinterJob.getPrinterJob();
Book book = new Book();
book.append(this, job.defaultPage());
printJob.setPageable(book);

boolean ok = job.printDialog();
if (ok) {
    try {
        job.print();
    } 
    catch (PrinterException ex) {
        ex.printStackTrace();
    } 
    finally {

    }
}
}
于 2011-06-02T15:32:00.287 回答
2

最后是一个简单的代码:

PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintable(this);
PrintRequestAttributeSet printAttribute = new HashPrintRequestAttributeSet();
printAttribute.add(new PageRanges(1, 100));        
boolean ok = job.printDialog(printAttribute);
if (ok) {
     try {
          job.print();
     } catch (PrinterException ex) {
      /* The job did not successfully complete */
     }
}
于 2017-08-07T21:17:16.720 回答