gpt4 book ai didi

java - 如果组件是 jlabel,则获取文本

转载 作者:行者123 更新时间:2023-11-29 07:04:27 25 4
gpt4 key购买 nike

我有一个带有 mant 组件的 LayeredPane2,例如 jlabels、jbutton 等。我想在组件中循环,如果组件是 Jlabel,则获取它的文本。我怎样才能做到这一点?到目前为止,这是我的代码:

   //search the components
for (int j=0; j<jLayeredPane2.getComponents().length; j++){
//if it is a jlabel
if ("class javax.swing.JLabel".equals(jLayeredPane2.getComponent(j).getClass().toString())){
//HOW DO I GET THE LABEL TEXT??
}
}

最佳答案

您需要 instanceof 关键字,然后是强制转换:

if(jLayeredPane2.getComponent(j) instanceof JLabel) {
JLabel label = (JLabel)jLayeredPane2.getComponent(j);
String text = label.getText();
//...Then do whatever you want to do with said text.
}

关于java - 如果组件是 jlabel,则获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21412116/

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