Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 netbeans RCP 应用程序。但是我在打开窗户时遇到了一个问题。
我有来自数据库的动态数据,在不同的表中。
当我第一次打开窗口时,数据是正确的,但是当我再次打开它时,数据已经重复了。
我什至用按钮操作测试了它以更改标签名称,当我关闭并打开窗口时,将显示新名称。我怎样才能让它工作以只显示正确的数据。
我尝试了不同的方法来重新绘制面板、updateui 等,但没有任何改变。
有人可以指出我正确的方向吗?
提前谢谢!
你能发送一些代码吗?
如果您通过注释使用“打开操作”,则只会创建一个 topcomponent 实例。
如果您直接使用新的 TopComponent,那么一切都在您手中。
可能是,您应该使用 swingworker 或 utility.attachInitJob
吉尔卡