這裏是代碼 String [] textfield = new String [8];現在setText for JTextfield from array
int a=600;
int b=100;
for (int i=0; i<8; ++i)
{
JTextField f = new JTextField(textfield[i]);
f.setBounds(a, b, 120, 25);
b+=30;
panel.add(f);
if (i==9) a=300;
if (i==9) b=10;
// Why Not Save Action in loop
}
,.setText( 「」)不輸入文本框後出現[5] 我想看到:文本框[I] .setText( 「你好5」);
查看我答案的最後部分。 – 2015-04-05 17:22:02