在摇摆中,我有一个带有 JScrollPane 的组件 JEditorPane 我想从 jeditorpane 的内容中打印出来。而且我应该可以灵活地在运行时更改打印页面的标题。我正在使用以下代码,但它不起作用
try{
JEditorPane editorpane1= new JEditorPane();
editorpane1.setContentType("text/html");
editorpane1.setEditable(false);
File file1= new File("path of the html file");
URL url= new URL(file1);
editorpane1.setPage(url);
JScrollPane jsp= new JScrollPane(editorpane1);
editorpane1.print();
}
catch(Exception ex)
{
}