我遇到了问题。我需要从JComboBox函数中获取一个名为.getSelectedItem()的变量名。但我得到一个变量的值。例如:
String concern =“hello world”; String concern1 =“你好”;
String [] servers = {concern,concern1}; comboBox1 =新的JComboBox(服务器);
public String = selected; selected = comboBox1.getSelectedItem()。toString();
我需要将一个变量的名称(e.x。关注)写入“selected”变量(就像写入关注选择为String),但我将“hello world”写入选中。我该如何解决这个问题?