我在 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();
}
}
请让我知道如何解决