gpt4 book ai didi

java - 在 java 中打印 HTML 文件

转载 作者:行者123 更新时间:2023-11-30 05:52:00 24 4
gpt4 key购买 nike

我正在尝试打印我的程序生成的 HTML 文件,但它不起作用。在 Ubuntu 上,“.isSupported(Desktop.Action.PRINT)”返回 false,即使我安装了 gnome 库,在 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();

我们将不胜感激 :)。

最佳答案

我最终没有使用 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);
}

关于java - 在 java 中打印 HTML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12141155/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com