我在JEditorPane上显示了该网页,但它得到的消息是“您的Web浏览器必须启用JavaScript才能正确显示此应用程序。”



下面是代码

import java.io.IOException;

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;

public class EricPage {

    public EricPage() {
    }

    public static void main(String[] args) {

         JEditorPane jep = new JEditorPane();
         jep.setEditable(false);

         try {
           jep.setPage("http://corp.netsapiens.com");
         }
         catch (IOException e) {
           jep.setContentType("text/html");
           jep.setText("<html>Could not load Web Site");
         }

         JScrollPane scrollPane = new JScrollPane(jep);
         JFrame f = new JFrame("Display WebPage");
         // Next line requires Java 1.3
         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         f.getContentPane().add(scrollPane);
         f.setSize(512, 342);
         f.show();
}
}


请让我知道如何解决

最佳答案

JEdi​​torPane仅呈现基本的HTML和CSS(HTML 3.2)。它不支持JavaScript。有关详细信息,请参见HTMLEditorKit

09-27 19:53