如何加载默认值

发布于 2024-12-27 13:13:22 字数 381 浏览 1 评论 0原文

我正在使用 JXTreeTable 和 DefaultTreeTableModel 构建树查看器。它将用于显示树中数百万个对象作为父对象和子对象。

使用此代码在树中插入节点的值 -

DefaultMutableTreeTableNode child = new DefaultMutableTreeTableNode("object" + i++);
model.insertNodeInto(child, root, root.getChildCount());

该模型已在加载时较早插入到树中。

我想显示插入的子项,因为它的值是从保存的结果中一一获取的,但它在列表完成后将完整的列表添加到模型中。

我怎样才能动态地显示对象列表?

I am building a tree viewer using JXTreeTable and DefaultTreeTableModel. It will be used to show millions of objects in tree as parent and their child.

Using this code to insert value of node in tree -

DefaultMutableTreeTableNode child = new DefaultMutableTreeTableNode("object" + i++);
model.insertNodeInto(child, root, root.getChildCount());

This model have been inserted to tree earlier at loading time.

I want to show a child inserted as its value fetched from saved result one by one, but it adding complete list to model after listing finished.

How can I perform this showing listing of object dynamically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文