0

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

请让我知道如何解决

4

1 回答 1

1

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

于 2012-04-18T19:10:07.667 回答