我的目的是比較兩個excel列表並刪除那些非重複的列表。在我的代碼中,我首先將第二個列表添加到第一個列表中。然後我想通過第一個循環來識別每個元素,在同一個循環中,我想選擇使用第一個元素,我確定要循環低谷整個列表,看看它是否可以找到它的任何重複,如果它發現它將其添加到新列表中。最後,我想刪除這兩個列表並保存新列表,以便重新編號。比較excel中的兩個列表並刪除非java中的重複項
public void compareLists(){
getOutCells1().addAll(getOutCells2());
for(int i =0;i<getOutCells1().size();i++){
getOutCells1().get(i);
for(int e=0;e<getOutCells1().size();e++){
getOutCells1().get(e);
if(getOutCells1().get(e)==getOutCells1().get(i)){
System.out.print(getOutCells1().get(e)+" ");
}
}
}
}
使用:
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
您使用的是哪個庫? –