Jtree:如何隐藏给定默认可变树节点文本的部分内容?
假设我的 JTree 由以下节点组成。
new DefaultMutableTreeNode("DisplayThisTextOnly {donotdisplaystringsinhere}");
如何使用 TreeCellRenderer
隐藏 {} 之间(包括 {})的文本?
当我选择这个节点时,我希望能够再次获取整个字符串。
"DisplayThisTextOnly {donotdisplaystringsinhere}"
基本上我的目标是能够从给定的树节点获取附加数据,而无需 setObject()
Say my JTree consists of following nodes.
new DefaultMutableTreeNode("DisplayThisTextOnly {donotdisplaystringsinhere}");
how can I hide the texts between and including {} from displaying using TreeCellRenderer
?
when I select this node, I want to be able to fetch the entire string again.
"DisplayThisTextOnly {donotdisplaystringsinhere}"
Basically my goal is to be able to fetch additional data from a given tree node without having to setObject()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建自定义渲染器并删除您不想看到的文本。 Swing 教程中关于如何使用树的部分有一个示例渲染器帮助您入门。
Create a custom renderer and strip out the text you don't want to see. The section from the Swing tutorial on How to Use Trees has an example renderer to get you started.