gpt4 book ai didi

java - 使用java打印doc文件

转载 作者:行者123 更新时间:2023-11-30 07:09:34 25 4
gpt4 key购买 nike

我想使用 java 打印一个 doc 文件。如果没有任何 3rd 方 API,我怎么能这样做。

据我所知,您必须将 doc 文件渲染为图像,然后将其传递给打印机。有什么方法可以将doc文件渲染成图像然后打印出来吗?

最佳答案

您无需将文档转换为图像。如果您使用的是 Java 6+,您可以尝试:

File file = new File("C:\\document.doc");
Desktop.getDesktop().print(file);

方法print在类里面java.awt.Desktop :

Prints a file with the native desktop printing facility, using the associated application's print command.

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

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