Jtree:如何隐藏给定默认可变树节点文本的部分内容?

发布于 2024-12-12 20:46:49 字数 357 浏览 1 评论 0原文

假设我的 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怎言笑 2024-12-19 20:46:50

创建自定义渲染器并删除您不想看到的文本。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文