我正在尝试在 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)
{
}