2

プログラムが生成したHTMLファイルを印刷しようとしていますが、機能しません。Ubuntuでは、gnomeライブラリがインストールされていても、「。isSupported(Desktop.Action.PRINT)」はfalseを返し、Windows 7では、javaは次の例外をスローします。

java.io.IOException: Failed to print file:/C:/Users/user/Documents/document.html. Error message: Unspecified error

スタックトレースが続きます。以下はコードです。私はjava.awt.Desktopを使用しています。

File doc = DocumentComposer.writeDocument(new File(System.getProperty("user.dir") + File.separator + "docs" + File.separator + docName + ".html"), case, data);
        if (Desktop.isDesktopSupported())  
        {  
            Desktop desktop = Desktop.getDesktop();  
            if (desktop.isSupported(Desktop.Action.PRINT))  
            {  
                desktop.print(doc);
            }
            else
                printError();
    }
  else
    printError();

どんな種類の助けも大歓迎です:)。

4

1 に答える 1

6

最終的にjava.awt.Desktopを使用しなくなりましたが、単に機能しませんでした。代わりに、このIBMチュートリアルhttp://www.ibm.com/developerworks/java/library/j-mer0322/の指示に従いました。正確には、私が現在使用しているコードは次のとおりです(そして、LinuxとWindowsの両方で問題なく実行されます!):

PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);
PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
PrintService service = ServiceUI.printDialog(GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration(), 200, 200,
                      printService, defaultService, flavor, pras);
if (service != null) {
    DocPrintJob job = service.createPrintJob();
    FileInputStream fis = new FileInputStream(doc);
    DocAttributeSet das = new HashDocAttributeSet();
    Doc document = new SimpleDoc(fis, flavor, das);
    job.print(document, pras);
}
于 2012-08-27T14:36:34.713 に答える