0
我試圖添加到一個JList中,但是我點擊添加按鈕時遇到了一個問題。使用按鈕添加到JList
public static void main(String[] args) {
// TODO Auto-generated method stub
final String[] nums = {"a", "b", "c"};
JFrame frame = new JFrame("Try");
Container pane = frame.getContentPane();
JList list = new JList (nums);
int column = nums.length+1;
pane.setLayout(new GridLayout(column, 2));
pane.add(list);
JButton addpiece = new JButton("Add");
pane.add(addpiece);
addpiece.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
int j = nums.length;
nums[j+1] = "input";
}
});
frame.pack();
frame.setVisible(true);
}
單擊添加按鈕時出現錯誤。除了JList的其他成員外,我還希望它輸出輸入。
什麼是錯誤您收到? – manouti