我是Java的初学者,我的屏幕上已经有了一个JComboBox控件。
在我的代码中,我试图从文件中读取数据并用它填充组合框。
我在这里搜索了文档和示例,并尝试了以下两种方法来执行此操作:
我试图:
jComboBox1.removeAllItems();
jComboBox1.addItem("test string");
然后我尝试这样做:
jComboBox1.removeAllItems();
jComboBox1.setModel(new DefaultComboBoxModel(new String[] { "test", "string" }));
运行程序时没有出现任何错误,但组合框数据没有任何反应,它只包含第1项,第2项,第3项,第4项的默认值。
有人可以帮助我解决我所缺少的问题吗?
已编辑 - 以下是该过程的代码。从public static void main(String args [])过程调用此过程,该过程似乎在程序启动时运行。打印到系统输出的东西显示出来,所以我知道代码块正在运行,并且没有生成错误。
第二次编辑 - 我认为这个问题与组合框有关,但我尝试更改标签或文本字段值,但它们也不起作用。我已更新代码以显示有关它的过程,我可以更新标签和文本字段,但在下面的过程中它不起作用。在我创建的程序中,与系统生成的程序相比,我一定不能正确引用控件吗?
第三次编辑 - 更多测试,这是我调用第二个过程的方式是问题所在。如果我从第一个程序运行第二个程序,一切正常。我在下面做了JFrame启动时运行该过程,这就是问题所在。试着弄清楚如何解决这个问题。
NewJFrame test = new NewJFrame();
test.LoadCmbData();
private void cmdStartActionPerformed(java.awt.event.ActionEvent evt) {
if (cmdStart.getText()=="Start Game")
{
//randVar.nextInt();
//strWord=strWords[Integer.valueOf(cmbRnd.getSelectedItem().toString())];
txtOutput.setText("");
txtOutput.setEnabled(true);
txtInput.setEnabled(true);
cmdInput.setEnabled(true);
cmdStart.setText("End Game");
lblStatus.setText("Enter your first guess and click 'Check'");
intTries=0;
//jComboBox1.addItem("test string");
//lblStatus.setText("Click 'Start Game' button to begin");
}
else
{
cmdStart.setText("Start Game");
txtInput.setText("");
txtInput.setEnabled(false);
cmdInput.setEnabled(false);
//txtOutput.setText("");
txtOutput.setEnabled(false);
lblStatus.setText("Click 'Start Game' button to begin");
}
}
public void LoadCmbData()
{
Path currentRelativePath = Paths.get("");
String s = currentRelativePath.toAbsolutePath().toString();
System.out.println("Current relative path is: " + s);
// Load word choices from file
try
{
File readfile = new File(s + "\\words.txt");
ArrayList linedata = readfile.OpenFile();
System.out.println("ArrayList populated");
// NewJFrame test = new NewJFrame();
// test.cmbRnd.removeAllItems();
// test.cmbRnd.addItem("test");
// test.cmbRnd.setModel(new DefaultComboBoxModel(new String[] { "test", "string", "test", "string", "one" }));
// //test.setModel(new DefaultComboBoxModel(linedata.toArray()));
// test.cmbRnd.updateUI();
// test.cmbRnd.revalidate();
// test.cmbRnd.repaint();
lblStatus.setText("test ");
txtInput.setEnabled(true);
txtInput.setText("test");
jComboBox1.removeAllItems();
jComboBox1.addItem("test string");
jComboBox1.updateUI();
jComboBox1.revalidate();
jComboBox1.repaint();
//NewJFrame test = new NewJFrame();
// test.repaint();
// test.revalidate();
//jComboBox1.removeAllItems();
//jComboBox1.setModel(new DefaultComboBoxModel(new String[] { "test", "string" }));
//jComboBox1.updateUI();
//jComboBox1.revalidate();
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
}
谢谢!
答案 0 :(得分:0)
弄清楚我做错了什么。作为我的新手,我正在调用来自" public static void main(String args [])"程序思考,这是加载代码所在,因为它在我做一些System.out消息时起作用。
在回溯我的问题并找出上述原因之后,我现在知道将该程序放在"构造函数"我现在已经了解的方法。
我仍然不知道为什么它不能在其他位置工作,因为它显然会运行程序,只是没有更新控件。如果有人愿意向我解释这将有所帮助。
谢谢!