gpt4 book ai didi

java - 打印具有自动分页功能的 WebView/WebEngine

转载 作者:行者123 更新时间:2023-12-01 18:15:20 30 4
gpt4 key购买 nike

我有一些 HTML 文本,例如

<h1>lorem... </h1>
<b> Lorem text going on...

我想在任何打印机上打印 HTML

WebEngine webEngine = WebView.getEngine();
webEngine.loadContent(html);
webEngine.print(javafx.PrinterJob);

但是结果是底部被切掉了一页......chrome的打印功能有我说的功能。

最佳答案

好的。我为我的案例找到了这个解决方案。我正在使用 JEditorPane

 JEditorPane editorPane = new JEditorPane();
editorPane.setContentType("text/html");
editorPane.setText("<html>...");
editorPane.print(null, null, false, javax.print.PrintService, null, false);

现在有自动分页符

关于java - 打印具有自动分页功能的 WebView/WebEngine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60381700/

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