在java中将HTML文件打印到打印机
我需要以编程方式将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.