我目前正在学习 Java 课程。我们正在编写一个应用程序来将输入的姓名和电话号码存储在数组列表中。当按下添加联系人按钮时,它应该将数据返回到两个单独的 JTextField 中,这些 JTextField 存储在一个类中并且可以滚动浏览。我无法让数据返回到文本字段。谢谢
private int position = 0;
private void addContactJButtonActionPerformed(java.awt.event.ActionEvent evt) {
setContact();
newContact = new Contact(nameJTextField.getText(),
Integer.parseInt(numberJTextField.getText()));
ContactsArrayList.add(newContact);
position = ContactsArrayList.size() - 1;
loadContact();
}
public void setContact()
{
newContact.setName(nameJTextField.getText());
newContact.setNumber(Integer.parseInt(numberJTextField.getText()));
}
public void loadContact()
{
newContact = (Contact) ContactsArrayList.get(position);
storedNameJTextField.setText(newContact.getName());
storedNumberJTextField.setText(String.valueOf(newContact.getNumber()));
}