步驟1
綁定的代碼的特定事件,使用addActionListener
方法。
button.addActionListener(new ActionListener({
public void actionPerformed(ActionEvent e)
{
// Bind the method to the button.
}
});
步驟2
填充與相關代碼的方法。
String value = jTextBox.getText();
// Grab the String value.
jListModel.addElement(value);
// And add it to the list model that informs the JList.
共
button.addActionListener(new ActionListener({
public void actionPerformed(ActionEvent e)
{
String value = jTextBox.getText();
// Grab the String value.
jListModel.addElement(value);
// And add it to the list.
}
});
有用的鏈接
Here是Oracle一個非常好的教程,詳細說明了如何操縱列表一百萬和一個不同的方式。
我試圖重新鍵入docs.oracle.com的一些代碼,但我無法真正理解那裏的公共,類和許多事情。我已經閱讀了教程,並得到了什麼字符串,整數的意思,如何聲明它們,這幾乎是。我在netbeans中做了我的GUI模型,但是我還沒有足夠的聲望發佈圖像。 – user2629807