gpt4 book ai didi

java - JEdi​​torPane 准备好了吗?

转载 作者:行者123 更新时间:2023-11-30 09:54:49 25 4
gpt4 key购买 nike

当 JEditorPane 完成从 url 加载网页时,我如何执行操作?这甚至可能吗?我无法在网上找到关于此的任何信息:s

谢谢

最佳答案

尝试使用 PropertyChangeListener:

JEditorPane html = new JEditorPane();
html.addPropertyChangeListener("page", this);
try
{
html.setPage( new URL(webURL.getText()) );
}
catch(Exception exc)
{
System.out.println(exc);
}

...

public void propertyChange(PropertyChangeEvent e)
{
System.out.println("Page Loaded");
}

有一次该事件会在加载初始页面之后但在加载所有子图像之前触发。然而,我只是做了一个快速测试,它似乎在页面和图像加载后立即触发。

关于java - JEdi​​torPane 准备好了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3108196/

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