gpt4 book ai didi

java - 获取分配给 JComponent 的名称

转载 作者:行者123 更新时间:2023-12-02 03:47:08 26 4
gpt4 key购买 nike

我有一个 arrayList,数组中的名称数量不同,具体取决于其使用方式。我为具有 arrayList 名称的函数之一创建 JRadioButtons,如下所示:

for(int i = 0; i < m_fixtures.size(); i++){
panel.add(new JRadioButton(m_fixtures.get(i)));
}

有什么方法可以检查分配给该 JRadioButton 的名称,因为我想做一些类似的事情

获取选定的 Jradiobuttons“标签”并向该数据添加一些操作,但我不知道如何获取分配给它的“标签”。

最佳答案

   Component[] components = panel.getComponents();

for (Component singleComponent : components) {
if (singleComponent instanceof JRadioButton) {
JRadioButton jrb = (JRadioButton) singleComponent;
// println or whatever you want
System.out.println(jrb.getText());
}
}

关于java - 获取分配给 JComponent 的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36201890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com