JavaFX(OpenJFX)不让我打印

时间:2016-04-04 01:24:29

标签: javafx printing

我的JavaFX程序准备并打印出一组VBox。

这是ModPrintCycle。窗口提供了打印选项

public PrintCycle data;
    //PrintCycle is a HashMap of VBoxes containing all the details
PrinterJob pj;
ChoiceBox<String> cbxPrinters = new ChoiceBox<String>();
ArrayList<Printer> arrPrinters = new ArrayList<Printer>();

//util.say just pops out a messagebox attached to ModPrintCycle.

public void printAll(ArrayList<String> pageList){
    if(cbxPrinters.getSelectionModel().getSelectedIndex() >=0){
        if (data.tables.size() > 0){
            Printer curP = Printer.getDefaultPrinter();
                if(arrPrinters.size() > 0 ){
                    curP = arrPrinters.get(cbxPrinters.getSelectionModel().getSelectedIndex());
                }
                try{
                    pj = PrinterJob.createPrinterJob(curP);
                    PageLayout pp = curP.createPageLayout(Paper.LEGAL, PageOrientation.PORTRAIT, MarginType.DEFAULT);
                    PageLayout pl = curP.createPageLayout(Paper.LEGAL, PageOrientation.LANDSCAPE, MarginType.DEFAULT);

                    for(String p : pageList){
                        Printable pt = data.tables.get(p);
                        pt.scaleToFit();
                        if(pt.isLandscape()){
                            pj.printPage(pl,pt);    
                        }
                        else{
                            pj.printPage(pp,pt);
                        }   
                    }

                    pj.endJob();
                }catch(Exception e){
                    util.say(ModPrintCycle.this, "Error on Print"); 
                }   
        }else{
            util.say(ModPrintCycle.this, "Nothing to print");
        }
    }
    else{
        util.say(ModPrintCycle.this, "No Printer Selected");
    }
}

打印机已安装并设置为默认值,我的程序会检测到它。但是当我打印时,没有错误弹出,打印机没有收到任何作业。

我确定我的程序之前有效(A Lubuntu 15.10,32位)。但现在,我将它转移到另一台计算机上。一个Lubuntu 15.10,64位。我有openjfx和openjdk版本&#34; 1.8.0_66-internal&#34;安装。

我该怎么做才能找出它不打印的原因?

试图做一个较小的打印作业,但效果相同。

Button testPrint = new Button("Test Print");

    testPrint.setOnAction(new EventHandler<ActionEvent>(){

        @Override
        public void handle(ActionEvent arg0) {
            try{
                Printer p = Printer.getDefaultPrinter();
                PrinterJob pj = PrinterJob.createPrinterJob(p);
                //util.say(ModShortcuts.this, "Print: " + pj.getJobStatus());
                Boolean k = pj.printPage(p.createPageLayout(Paper.LEGAL,PageOrientation.PORTRAIT,MarginType.DEFAULT), new Text("Hey"));
                //util.password(); //reused for a showAndWait() dialog
                //util.say(ModShortcuts.this, "Print: " + pj.getJobStatus());
                //util.say(ModShortcuts.this, "attempted Print using: " + pj.getPrinter().getName());


                if(k){
                    //util.say(ModShortcuts.this, "Print: " + pj.getJobStatus());
                    pj.endJob();
                    //util.say(ModShortcuts.this, "Print: " + pj.getJobStatus());
                }

            }catch(Exception e){
                e.printStackTrace();
            }

        }

    });

    vbox.getChildren().add(testPrint);

取消注释,输出为

Print: Not Printing
Print: Printing
attempted Print using: AstinePrinter
Print: Printing
Print: Done

AstinePrinter是我的打印机的名称。

编辑:使用

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer 

我安装了Oracle Java 8,但问题仍然存在。

编辑:也是Oracle Java 7。

编辑:

尝试禁用防火墙,以防它出现端口问题

sudo ufw disable

仍然没有。

1 个答案:

答案 0 :(得分:0)

我发现了一些名为 CUPS4J 的内容,它让我可以绕过Java尝试在64位Ubuntu中访问CUPS的问题。它使用Byte数组打印出来,幸运的是,JavaFX有一种方法可以对所选节点进行快照。

它有点模糊,但它已经足够好了。 注意:我不是专家,我也不知道为什么需要这样做。但这样做让我可以毫无错误地使用CUPS4J,所以一定是正确的。

  • 首先,请为org.slf4j下载[ECLIPSE PROJECT], 因为有必须修复的依赖项。将其导入您的项目。

编辑:之所以需要以下内容的原因是我的软件包不会带有Logger。如果您的类路径显示您拥有它,请跳过这些步骤。

  • 接下来,对于每个类,Log的所有实例(cAsE sEnSiTiVe)应替换为Log,并修复导入(Ctrl + Shift + O)。这将建议LogFactory的版本,并自动检测org.apache.commons.logging.*。我的导入路径是org.slf4j

  • 最后,在库下的构建路径中删除private void print(Region node){ //Make the image with the proper sizes WritableImage wi = new WritableImage( (int) Math.round(Math.ceil(node.getWidth())), (int) Math.round(Math.ceil(node.getHeight()))); //shoot the image wi = node.snapshot(new SnapshotParameters(), wi); //write the image into a readable context ByteArrayOutputStream out = new ByteArrayOutputStream(); try{ ImageIO.write(SwingFXUtils.fromFXImage(wi, null), "png", out); }catch(Exception e){ System.out.println("Error with SnapShot function"); } //Get your printer CupsClient cc = new CupsClient(); CupsPrinter cp = cc.getDefaultPrinter(); //print the readable context cp.print(new PrintJob.Builder(out.toByteArray()).build()); //unlike PrinterJob, you do not need to end it. } 的库依赖项。

(我确定使用Runnable Jar很好,但这就是我所做的,因为使用Runnable Jar给了我错误)

这是我为打印功能所做的简化。

{{1}}

我不确定,但我在CUPS4J论坛上看到错误报告说多页有问题,但我还没有遇到过。

如果有人有更好的答案,请随意添加。但到目前为止,这对我有用。