for(JCheckBox currentCheckBox : imagesToBeImportedCheckBox){
if(currentCheckBox.isSelected()){
System.out.println("The text Box selected for removing are"+currentCheckBox.getText());
}
}
for(JCheckBox currentCheckBox : imagesToBeImportedCheckBox){
if(currentCheckBox.isSelected()){
System.out.println("I am entering in the loop where this image has to be removed "+currentCheckBox.getText());
imagesToBeImported.remove(currentCheckBox.getText());
}
}
for(ResourceListObject currentImage : imagesToBeImported){
System.out.println("After removing the images left are "+currentImage.getName());
}
そしてここに出力があります
削除するために選択されたテキスト ボックスは aix71b です
削除するために選択されたテキスト ボックスは Migration-image です
このイメージを削除する必要があるループに入ります aix71b
このイメージを削除する必要があるループに入ります
画像を削除した後、残っているのは aix71b です
イメージを削除した後、残っているのは Migration-image です