我对java Window Builder应用程序有疑问。 我需要使这个应用程序将名称(textField)保存到另一个类的数组变量中。
因此,当你按下New Name按钮时,应该从textField传递Name,然后让你引入另一个并在数组的下一个位置传递这个新的,依此类推。 之后,数组中的名称必须显示在textArea
中问题在于,当我按下按钮,而不是将textField文本传递给数组时,我得到了很多错误。如果我将String []中的“n”变量更改为String,它不会给我任何错误,但它只保存一个名称。
DATA Class
public class data {
String[] n;
public void saveData(String na, int counter){
n[counter]=na;
}
public void showData(int counter){
for (int i = 0; i < counter; i++) {
System.out.println(n[counter]);
}
}
}
窗口类
import java.awt.EventQueue;
public class dataWindow {
// Data OBJECT
data d = new data();
private JFrame frame;
private JTextField textName;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
dataWindow window = new dataWindow();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public dataWindow() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel lblName = new JLabel("Name");
textName = new JTextField();
textName.setColumns(10);
JButton btnNewName = new JButton("New Name");
btnNewName.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
String n;
int c=0;
// HERE I GET THE TEXT AND PASS IT TO THE ARRAY IN DATA CLASS
// here I think that I get the error when I press the "New Name" button
n=textName.getText();
d.saveData(n, c);
textName.setText("");
c++;
}
});
GroupLayout groupLayout = new GroupLayout(frame.getContentPane());
groupLayout.setHorizontalGroup(
groupLayout.createParallelGroup(Alignment.LEADING)
.addGroup(groupLayout.createSequentialGroup()
.addGap(44)
.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)
.addComponent(btnNewName)
.addGroup(groupLayout.createSequentialGroup()
.addComponent(lblName)
.addGap(18)
.addComponent(textName, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)))
.addContainerGap(259, Short.MAX_VALUE))
);
groupLayout.setVerticalGroup(
groupLayout.createParallelGroup(Alignment.LEADING)
.addGroup(groupLayout.createSequentialGroup()
.addGap(72)
.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE)
.addComponent(lblName)
.addComponent(textName, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addPreferredGap(ComponentPlacement.RELATED, 114, Short.MAX_VALUE)
.addComponent(btnNewName)
.addGap(33))
);
frame.getContentPane().setLayout(groupLayout);
}
}
有人可以帮帮我吗?提前谢谢。
答案 0 :(得分:0)
这是因为你还没有初始化你的数组。
String[] n = new String[x]; // x is the number of names you want to store.
如果您不想指定要存储的设定名称数量,则需要使用列表。
List<String> n = new ArrayList<String>();
这可能是一个更好的实现方式。