0

我正在尝试在 jeditorPane 中打开 pdf 文件,它打开 pdf 页面但不是以实际格式而是以二进制格式。是否可以在 jeditorpane 或 jtextpane 中打开 pdf 文件。我正在使用以下代码。

 try
 {
  JEditorPane pane1= new JEditorPane();
  File f1= new File("path of the pdf file");
  pane1.setPage(f1.toURL());
 }
  catch(Exception ex)
  {
  }
4

1 回答 1

2

JEdi​​torPane 默认不支持 PDF 格式。如果您实施适当的EditorKit,您可以使其工作,但我相信这将是一项非常乏味的工作。

然而,Adobe 似乎提供了一个 Java bean PDF 查看器,您可以将其集成到您的应用程序中以显示 PDF。看看这篇文章

于 2013-01-15T09:35:30.030 回答