1

在摇摆中,我有一个带有 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)
 {

  }
4

1 回答 1

1

您可以使用编辑器套件独立打印机http://java-sl.com/JEditorPanePrinter.html

要添加页眉,只需修改根视图的 paint() 方法,在上面添加您的内容。

于 2012-10-26T05:55:33.050 回答