很好笑,我找不到如何删除JList中的多个选定项的方法

请帮助

UPD:
好的,问题出在NetBeans中,因为它创建了JList并设置了AbstractListModel模型,该模型以某种方式不能与remove方法一起使用。

最佳答案

   DefaultListModel dlm = (DefaultListModel) subjectList.getModel();

      if(this.subjectList.getSelectedIndices().length > 0) {
          int[] selectedIndices = subjectList.getSelectedIndices();
          for (int i = selectedIndices.length-1; i >=0; i--) {
              dlm.removeElementAt(selectedIndices[i]);
          }
    }

关于java - 如何删除JList中的多个项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7672260/

10-10 10:07