gpt4 book ai didi

java - 如何使用java应用程序打印word和excel文档?

转载 作者:行者123 更新时间:2023-12-01 10:39:19 26 4
gpt4 key购买 nike

如何在java中打印word和excel文件?当我尝试打印该单词或 Excel 文件时,我将编码内容作为打印件获取。有没有可用的解决方案使用我可以使用java程序打印我的文档文件?

请找到下面的代码

XWPFDocument docx = new XWPFDocument(new FileInputStream(new File("D://TEST.docx")));
XWPFWordExtractor we = new XWPFWordExtractor(docx);

try {
new RemotePrintService().print(we.getText().getBytes(), "Default-Printer","");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

最佳答案

尝试:

Desktop desktop=Desktop.getDesktop();
if (desktop.isSupported(Desktop.Action.PRINT))
desktop.print(new File("yourFile.docx"));

关于java - 如何使用java应用程序打印word和excel文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34505340/

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