Javaプログラムを使用してhtmlファイルを作成しています。HTMLファイルも使用してCSS
います。javafx webview を使用してこのファイルを開いています。このhtmlファイルをjavaを使用して印刷コマンドに送信することは可能ですか?でファイルを開い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();
}