0

我正在尝试修改 excel 工作簿中任何单元格中与另一个值匹配的行的最后一个单元格。

在第一次迭代中它工作正常,但在第二次循环中,我在行java.util.ConcurrentModificationException中得到了这个错误 for (Cell cell : row) {

Exception in thread "main" java.util.ConcurrentModificationException
    at java.base/java.util.TreeMap$PrivateEntryIterator.nextEntry(TreeMap.java:1486)
    at java.base/java.util.TreeMap$ValueIterator.next(TreeMap.java:1531)
    at Package.Fotos.initial(Fotos.java:266)
    at Package.Fotos.main(Fotos.java:360)

有谁知道我做错了什么?这是我根据这个答案使用的代码。

...
for (int i = 0; i < cuentafilas; i++) {
  List<WebElement> columnas = filas.get(i).findElements(By.tagName("img"));
  int cuentacolumnas = columnas.size();
  
  for (int k = 0; k < cuentacolumnas; k++) {
    String c = columnas.get(k).getAttribute("src");
  
    if (c.contains("jpg")) {
      String filtroValor = id;
      
      Workbook libro = WorkbookFactory.create(new FileInputStream("D:\\archivos\\entrada.xlsx"));
      DataFormatter formatter = new DataFormatter();
      Sheet hoja = libro.getSheetAt(0);
      
      for (Row row : hoja) {
        for (Cell cell : row) {
          CellReference cellRef = new CellReference(row.getRowNum(), cell.getColumnIndex());
          
          String text = formatter.formatCellValue(cell);
          
          if (filtroValor.equals(text)) {
            Row fila = hoja.getRow(row.getRowNum());
            int ultimaCelda = fila.getLastCellNum();
            Cell celda = fila.createCell(ultimaCelda);
            celda.setCellValue(c);
            OutputStream os = new FileOutputStream("D:\\archivos\\entrada.xlsx");
            libro.write(os);
          }
        }
      }
    }
  }
}
...

谢谢。

4

1 回答 1

0

错误在于

Cell celda = fila.createCell(ultimaCelda);

在该行中创建一个新单元格。在遍历所有单元格的列表时,您不能添加单元格。尝试创建您要编辑的列表的副本并迭代该列表,以便另一个变得可编辑

出现在java.util.ConcurrentModificationException编辑列表时,您当前正在迭代。

于 2021-12-28T20:11:25.683 回答