我期待看到每行如果列1的值是相同或不同我已嘗試將.getContents()添加到單元格和工作表的末尾,但它doesn不改變結果,並試圖將它們都轉換爲字符串,但仍然是相同的結果。每次我已經試過一次回國不斷 「做動作2」Java excel:如何比較兩個單元格
我還使用了JExcelApi
w = Workbook.getWorkbook(inputWorkbook);
Sheet sheet = w.getSheet(0);
for(int i = 1;i<sheet.getRows(); i++){
Cell cell = sheet.getCell(0,i);
if(cell == sheet.getCell(0, (i+1))){ //If cell is the same value as the one in the row below it
//do action 1
}
else if(cell != sheet.getCell(0,(i+1))){//If cell has a different value as the one in the row below it
//do action 2
}
}
你把我在正確的軌道上,但我發現,工作是使用: 如果(cellOne.getContents()等於(cellTwo.getContents())){ – bigbangben
很好看,現在對你的作品 –