我正在开发一个 Swing 应用程序,我必须在其中显示 HTML 文件。
我正在使用它来JEditorPane
控制它。它显示 HTML 文件的内容,但格式与实际 HTML 文件中的原始格式不同。
JEditorPane
不支持object
元素。而不是加载目标文件,它只是显示?
.
Swing 中是否有任何其他内置控件来浏览 HTML 文件而不是JEditorPane
?
我正在使用以下代码:
JEditorPane HtmlPane= new JEditorPane();
File file1= new File("path of the file");
HtmlPane.setContentType("text/html");
HtmlPane.setEditable(false);
HtmlPane.setPage(file1.toURI().toURL());
JScrollPane jsp=new JScrollPane(HtmlPane);