我以 Java swing 形式显示 Html 文件数据。内容正在显示,但某些格式受到干扰。正在显示图像,但格式受到干扰。并且超链接不起作用,您能建议我的代码吗,我正在使用以下代码。setContentType 方法有问题吗
File htmlFile = new File("e:/test/help4t.htm");
htmlPane = new JEditorPane();
htmlPane.setContentType("text/html");
htmlPane.setPage(htmlFile.toURI().toURL());
//URL url= new URL("http://www.lawcrux.com");
// htmlPane.setPage(url);
htmlPane.addHyperlinkListener(this);
JScrollPane jsp= new JScrollPane(htmlPane);
cp.add(jsp);
jsp.setBounds(750, 50, 600, 600);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "exception is" + ex);
}
请帮忙
问候