我正在使用 java 程序创建一个 html 文件。HTML 文件CSS
也在使用 . 我正在使用 javafx webview 打开这个文件。是否可以使用 java 将此 html 文件发送到打印命令我这样做是通过打开文件JEditorPane
然后打印jeditorpane
.
对于通过打印JEditorPane
,我使用以下代码。
try
{
File HtmlFile= new File("path of file");
JEditorPane htmlPane= new JEditorPane();
htmlPane.setPage(htmlFile.toString());
htmlPane.print();
}
catch(Exception ex)
{
ex.printStackTrace();
}