我第一次从列表中选择一个选项,值显示在 jtextarea 第二次我选择一个选项,值没有改变。有刷新选项吗?还是解决这个问题的更好方法?谢谢!
这是代码片段:
String[] choices = {"Apple","Orange", "Pear"};
String fruit= (String) JOptionPane.showInputDialog(null, "Select Fruit:","Select Fruit", JOptionPane.QUESTION_MESSAGE, null, choices, choices[0]);
if (fruit!= null){
jtextarea.append("Name\t: " + fruit.getName() + "\n");
jtextarea.append("Color\t: " + fruit.getColor() + "\n");
}