我正在以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);
        }


请帮忙

问候

最佳答案

为什么不使用Jsoup,因为它提供了非常方便的API来提取和处理数据。

看到这个链接:

http://jsoup.org/

关于java - HTML swing中的html文件浏览,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12543154/

10-10 12:26