如何判断我的html页面何时加载

时间:2011-01-06 22:26:57

标签: java browser swt

如何在我的swt浏览器中加载我的html页面?是否有某种我可以听的事件?

2 个答案:

答案 0 :(得分:2)

您需要处理LocationListener中的方法changed()(http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse /swt/browser/ProgressListener.html)并测试event.top是否为true

答案 1 :(得分:1)

为其添加ProgressListener。它有一个名为completed的方法,您可以通过该方法接收页面已完全加载的通知。