如何合并可视化树xml编辑器swing组件?
到目前为止,我已经使用 dom4j 的 DefaultTreeModel 从它读取的 xml 文件中创建了一个 Jtree。
问题是 Jtree 不会在每次 xml 更改或添加或删除节点时刷新。
到目前为止,似乎涉及很多管道代码,因为似乎没有实现 OnXmlChanged()。
我还有什么其他选择可以合并可视化树 xml swing 组件,该组件还支持在底层 xml 文件发生更改时触发事件。
So far I have used dom4j's DefaultTreeModel to create a Jtree out of the xml file it reads.
The problem is that the Jtree doesn't refresh everytime the xml is changed, or a node is added or removed.
So far, it appears there is much plumbing code involved because there doesn't seem to be implementation of OnXmlChanged().
What other alternatives do I have of incorporating a visual tree xml swing component that also supports event firing upon change in the underlying xml file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您知道某些内容已更改时,您始终可以自行触发这些事件,从 DefaultTreeModel 中,使用:
You can always fire these events your self when you know that something has changed, From DefaultTreeModel, use: