gpt4 book ai didi

java - 如何使 String 值调用 java 中特定的现有 JButton 变量名?

转载 作者:搜寻专家 更新时间:2023-11-01 03:34:41 24 4
gpt4 key购买 nike

所以,我知道有这个:

int number = Integer.parseInt("5");
String numtxt = Integer.toString(12);
double number = Double.parseDouble("4.5");
String numbertxt = Double.toString(8.2);
String letter = Character.toString('B');
char letter = "stringText".charAt(0);

so on...

但我不知道如何使 String 值动态调用现有的 JButton 变量名;有可能吗?

Let's say, I have 4 JButton called btn1, btn2, btn3 and btnFillNumber;

I create a String called buttonName;

package testing;

public class Testing extends javax.swing.JFrame {

String buttonName;
int num;

public Testing() {
initComponents();
}

@SuppressWarnings("unchecked")
// Generated Code <<<-----

private void btnFillNumberActionPerformed(java.awt.event.ActionEvent evt) {
for(num = 1; num <= 3; num++){
buttonName = "btn" + Integer.toString(num);
JButton.parseJButton(buttonName).setText(num);
}
}

/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
// Look and feel stteing code (optional) <<<-----

/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Testing().setVisible(true);
}
});
}

// Variables declaration - do not modify
private javax.swing.JButton btn1;
private javax.swing.JButton btn2;
private javax.swing.JButton btn3;
private javax.swing.JButton btnFillNumber;
// End of variables declaration
}

我知道没有 JButton.parseJButton(),我只是不想做复杂的解释,我只是想从 String 转换为动态调用 JButton 的变量名。

看这个:

    for(num = 1; num <= 3; num++){
buttonName = "btn" + Integer.toString(num);
JButton.parseJButton(buttonName).setText(num);
}

我想用一个字符串做一个循环

  • 一个固定的字符串值(btn)和
  • 在它后面递增数字(1、2、3...)和
  • 调用 JButton。

我可以简单地做到这一点,但如果我得到 25 或更多怎么办?所以循环我想要的...

btn1.setText("1");
btn2.setText("2");
btn3.setText("3");

Note that the value of these JButtons are not necessarily incremental in some purpose.

输出:

Sample output

我的真实发展:

enter image description here

附言我曾经在 NetBeans Design 中制作 JFrame(只需单击并拖动调色板窗口中的对象,如 JPanel、JButton 等,所以除了制作我自己的逻辑方法外,我不会手动输入代码;而且我无法编辑代码在源 View 中的灰色背景是由设计 View 自动创建的,但在设计 View 本身中。如果您有提示和指南,我将很乐意)。

最佳答案

使用 map :

private Map<String,JButton> buttonMap = new HashMap<String,JButton>();

在你的构造函数中添加你的按钮:

buttonMap.add("btn1", btn1);
buttonMap.add("btn2", btn2);
buttonMap.add("btn3", btn3);
buttonMap.add("btn4", btn4);

在你的行动中听众/循环无论做什么:

String buttonName = "btn1"; //should be parameter or whatever
JButton button = buttonMap.get(buttonName);

作为替代方案,您也可以设置一个 JButton 数组:

JButton[] buttons = new JButton[4];

button[0] = new JButton(); //btn1
button[1] = new JButton(); //btn2
button[2] = new JButton(); //btn3
button[3] = new JButton(); //btn4

并访问它

JButton but = button[Integer.parseInt(buttonString)-1];

或者利用向 UI 元素添加自定义属性的可能性(为此你需要一个 JComponent)

getContentPane().putClientProperty("btn1", btn1);

然后检索蒙山

JButton but = (JButton)getContentPane().getClientProperty("btn1");

关于java - 如何使 String 值调用 java 中特定的现有 JButton 变量名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34633414/

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