在java中将HTML文件打印到打印机

发布于 2024-08-05 03:23:15 字数 292 浏览 5 评论 0原文

我需要以编程方式将 html 打印到打印机。我不想打印 html 标签,我希望在打印之前解析 html 标签。

此代码将 html 功能和数据添加到名为 document 的 htm 文档中。然后,我将输出发送到名为 itext.html

HtmlWriter writer2 = HtmlWriter.getInstance(document,new FileOutputStream("itext.html")); 的

文件我知道需要以某种方式解析该 html 文件并打印它,而不必在浏览器中打开它并转到文件和打印。

I need to print a an html out to the printer programmatically. I do not want to print the html tags, I want the html tags parsed before printed.

This code adds html features and data to an htm document named document. I am then sending the output to a file named itext.html

HtmlWriter writer2 = HtmlWriter.getInstance(document,new FileOutputStream("itext.html"));

I know need to somehow parse that html file and print it without having to open it up in a browser and going to FILE and Print.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

番薯 2024-08-12 03:23:15

Cobra 将把 HTML 渲染到与 Swing 兼容的面板。您应该能够使用标准打印 API/服务来打印该内容。

Cobra will render HTML to a Swing-compatible panel. You should be able to print that using the standard Print APIs/services.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文