gpt4 book ai didi

java - 网页无法使用 JEdior Pane 运行

转载 作者:行者123 更新时间:2023-12-01 13:22:34 24 4
gpt4 key购买 nike

好吧,大家好,我仍在学习 Java,只是搞乱了一些东西,我制作了一个 GUI,并有一个 JEditorPane 在按下“Go”按钮时显示网页。

无法运行的代码:

    private void goActionPerformed(java.awt.event.ActionEvent evt) {                                   
String URL = url.getText();
JEditorPane.setEditable(false);

try {
JEditorPane.setPage("www.google.com");
}catch (IOException e) {
JEditorPane.setContentType("text/html");
JEditorPane.setText("<html>Could not load " + URL);
}
}

欢迎任何帮助,谢谢!

最佳答案

setPage 需要有效的协议(protocol)前缀

jEditorPane.setPage("http://www.google.com");

确保您的文本字段也有一个 this 前缀(或者至少 URL 链接参数格式正确)

关于java - 网页无法使用 JEdior Pane 运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21948410/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com