0
JList
에 요소를 추가 할 수 있지만 선택한 요소를 제거하려면 어떻게해야합니까?내 jlist에서 텍스트를 제거하려면 어떻게해야합니까?
DefaultListModel<String> model = new DefaultListModel<>();
button1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// int n = JOptionPane.showConfirmDialog(Jframe.this,"Clicked?");System.out.println(n);
String name = textfield1.getText();
model.addElement(name);
custList.setModel(model);
}
});
button2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}
});
입니다. – duffymo
[DefaultListModel # removeElement'] (https://docs.oracle.com/javase/8/docs/api/javax/swing/DefaultListModel.html#removeElement-java.lang.Object-) 또는 [DefaultListModel #' removeElementAt'] (https://docs.oracle.com/javase/8/docs/api/javax/swing/DefaultListModel.html#removeElementAt-int-)? – bradimus
예를 들어 나에게 중요하다. – kingramx