【问题标题】:Java Itext PDF print, printing file stays locked by JavaJava Itext PDF打印,打印文件被Java锁定
【发布时间】:2016-09-10 09:54:34
【问题描述】:

我有一个问题,我将 PDF 转换为可打印的可打印格式的代码锁定了我的 pdf 文件。

我的代码:

public class PDFPrinter {

public PDFPrinter(File file) {
    try {
        FileInputStream fis = new FileInputStream(file);
        FileChannel fc = fis.getChannel();
        ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
        fis.close();
        fc.close();
        PDFFile pdfFile = new PDFFile(bb); // Create PDF Print Page
        PDFPrintPage pages = new PDFPrintPage(pdfFile);

        // Create Print Job
        PrinterJob pjob = PrinterJob.getPrinterJob();
        PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
        Paper a4paper = new Paper();
        double paperWidth = 8.26;
        double paperHeight = 11.69;
        a4paper.setSize(paperWidth * 72.0, paperHeight * 72.0);

        /*
         * set the margins respectively the imageable area
         */
        double leftMargin = 0.3;
        double rightMargin = 0.3;
        double topMargin = 0.5;
        double bottomMargin = 0.5;

        a4paper.setImageableArea(leftMargin * 72.0, topMargin * 72.0,
                (paperWidth - leftMargin - rightMargin) * 72.0,
                (paperHeight - topMargin - bottomMargin) * 72.0);
        pf.setPaper(a4paper);

        pjob.setJobName(file.getName());
        Book book = new Book();
        book.append(pages, pf, pdfFile.getNumPages());
        pjob.setPageable(book);

        // Send print job to default printer
        if (pjob.printDialog()) {
            pjob.print();
        }
    } catch (IOException e) {
        e.printStackTrace();
    } catch (PrinterException e) {
        JOptionPane.showMessageDialog(null, "Printing Error: "
                + e.getMessage(), "Print Aborted",
                JOptionPane.ERROR_MESSAGE);
        e.printStackTrace();
    }
}

class PDFPrintPage implements Printable {
    private PDFFile file;

    PDFPrintPage(PDFFile file) {
        this.file = file;
    }

    public int print(Graphics g, PageFormat format, int index)
            throws PrinterException {
        int pagenum = index + 1;

        // don't bother if the page number is out of range.
        if ((pagenum >= 1) && (pagenum <= file.getNumPages())) {
            // fit the PDFPage into the printing area
            Graphics2D g2 = (Graphics2D) g;
            PDFPage page = file.getPage(pagenum);
            double pwidth = format.getImageableWidth();
            double pheight = format.getImageableHeight();

            double aspect = page.getAspectRatio();
            double paperaspect = pwidth / pheight;

            Rectangle imgbounds;

            if (aspect > paperaspect) {
                // paper is too tall / pdfpage is too wide
                int height = (int) (pwidth / aspect);
                imgbounds = new Rectangle(
                        (int) format.getImageableX(),
                        (int) (format.getImageableY() + ((pheight - height) / 2)),
                        (int) pwidth, height);
            } else {
                // paper is too wide / pdfpage is too tall
                int width = (int) (pheight * aspect);
                imgbounds = new Rectangle(
                        (int) (format.getImageableX() + ((pwidth - width) / 2)),
                        (int) format.getImageableY(), width, (int) pheight);
            }

            // render the page
            PDFRenderer pgs = new PDFRenderer(page, g2, imgbounds, null,
                    null);
            try {
                page.waitForFinish();
                pgs.run();
            } catch (InterruptedException ie) {
            }

            return PAGE_EXISTS;
        } else {
            return NO_SUCH_PAGE;
        }
    }
}
}

我称之为:

new PDFPrinter(file);

一切正常,但在我开始打印后,PDF 文件被 Java 锁定。怎么了??当我重新启动 Java 时,它再次工作,但只有一次,然后它又被锁定了。

【问题讨论】:

  • 你确定这是关于iText的问题???
  • 与 itext 无关,但与它有关系
  • 我看到你已经删除了 iText 标签。谢谢你。仅供参考:所有标有“itext”的 SO 问题都会显示在 iText 的 Slack(我们的内部交流工具)的频道中。
  • 也许你现在可以帮我解决我的问题??
  • 不,我不能。我现在要修剪草坪。

标签: java pdf printing


【解决方案1】:

我找到了另一个解决方案...

所有人:

public static void printPdf (String filePath, String jobName) throws IOException, PrinterException {

    FileInputStream fileInputStream = new FileInputStream(filePath);
    byte[] pdfContent = new byte[fileInputStream.available()];
    fileInputStream.read(pdfContent, 0, fileInputStream.available());
    ByteBuffer buffer = ByteBuffer.wrap(pdfContent);

    final PDFFile pdfFile1 = new PDFFile(buffer);
    pdf_print_engine pages1 = new pdf_print_engine(pdfFile1);
    PrinterJob pjob = PrinterJob.getPrinterJob();
    PageFormat pfDefault = PrinterJob.getPrinterJob().defaultPage();
    Paper defaultPaper = new Paper();
    defaultPaper.setImageableArea(0, 0, defaultPaper.getWidth(), defaultPaper.getHeight());
    pfDefault.setPaper(defaultPaper);
    pjob.setJobName("Test");
    if (pjob.printDialog()) {
        // validate the page against the chosen printer to correct
        // paper settings and margins
        pfDefault = pjob.validatePage(pfDefault);
        Book book = new Book();

        book.append(pages1, pfDefault, pdfFile1.getNumPages());
        pjob.setPageable(book);

        try {
            pjob.print();
        } catch (PrinterException exc) {
            System.out.println(exc);
        }
    }

享受代码的乐趣

提姆

【讨论】:

    猜你喜欢
    • 2011-03-04
    • 2016-04-11
    • 2012-03-17
    • 2013-06-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-02-19
    相关资源
    最近更新 更多