我需要将BasicDBList中的所有BasicDBObject串联起来。每次循环运行时,我的BasicDBObject仅包含一个json元素,退出我的BasicDBList不包含任何内容。为什么会这样?放入dbLinha.clear()可以避免重复,但是每次循环运行时都会对代码进行评估BasicDBList包含重复!

public BasicDBList readMetadados(Planilha planilha) {
        List<String> cabecalho = new ArrayList<>();
        int linhaReferencia = 0;
        BasicDBObject dbLinha = new BasicDBObject();
        BasicDBList listLinha = new BasicDBList();

        try {
            InputStream planilhaFile = new FileInputStream(FileUtils.getFile(UPLOAD_PATH, planilha.getPath()));
            Sheet linhaInicial = new XSSFWorkbook(planilhaFile).getSheetAt(0);
            Iterator<Row> rowIterator = linhaInicial.iterator();

            while (rowIterator.hasNext()) {
                Row row = rowIterator.next();
                Iterator<Cell> cellIterator = row.cellIterator();
                while (cellIterator.hasNext()) {
                    Cell cell = cellIterator.next();
                    try {
                        if (cell.getCellType() != 3) {

                            if (cell.getCellType() == 1) {
                                if ("Veículo".equals(cell.getStringCellValue())) {
                                    linhaReferencia = cell.getRow().getRowNum();
                                    cabecalho.add(cell.getStringCellValue());
                                    while (cellIterator.hasNext()) {
                                        cabecalho.add(cellIterator.next().getStringCellValue());
                                    }
                                    break;
                                }
                            }

                            if (linhaReferencia != 0) {
                                switch (cell.getCellType()) {
                                    case Cell.CELL_TYPE_FORMULA:
                                        dbLinha.append(cabecalho.get(cell.getColumnIndex()), cell.getCellFormula());
                                        break;
                                    case Cell.CELL_TYPE_BOOLEAN:
                                        dbLinha.append(cabecalho.get(cell.getColumnIndex()), cell.getBooleanCellValue());
                                        break;
                                    case Cell.CELL_TYPE_NUMERIC:
                                        dbLinha.append(cabecalho.get(cell.getColumnIndex()), cell.getNumericCellValue());
                                        break;
                                    default:
                                        dbLinha.append(cabecalho.get(cell.getColumnIndex()), cell.getStringCellValue());
                                }
                            }

                        }
                    } catch (IllegalStateException e) {
                        Log.info(this, "Erro ao obter valor da linha [{}] e coluna [{}]", cell.getRow().getRowNum(), cell.getColumnIndex());
                    }
                }
                if (!dbLinha.isEmpty()) {
                    for(int i = 0; i < cabecalho.size(); i++){
                       if(!dbLinha.containsKey(cabecalho.get(i))){
                           dbLinha.append(cabecalho.get(i), " ");
                       }
                    }
                   listLinha.add(dbLinha);
                   dbLinha.clear();
                }
            }
        } catch (FileNotFoundException e) {
            Log.error(this, "Erro ao processar planilha: Planilha não encontrada.", e);
        } catch (IOException e) {
            Log.error(this, "Erro ao processar planilha.", e);
        }
        System.out.println(listLinha.toString());
        return listLinha;
    }


输出量

[ { } , { } , { } , { } , { } , { }]


第一次运行时,BasicDBList的内容正确,第二次开始复制并替换为添加的前件。

第一次运行循环时,BasicDBList的值(“ if(!dbLinha.isEmpty())”)


第二次

最佳答案

您尝试使用clear并一遍又一遍地使用同一对象(dbLinha)保存对象。那行不通。

将对象添加到列表时,它会添加对该对象的引用,而不是该对象的副本到列表。因此,基本上,您第一次添加的是对dbLinha对象的引用,现在列表中的第一项指向dbLinha设置为相同的对象。

然后,您呼叫dbLinha.clear()

这意味着存储在列表中的引用相同,现在将显示一个空对象。然后,将另一行读入同一对象,将对它的另一个引用添加到列表中,然后再次将其清除。

您的列表中充满了对您正在重复使用的单个对象的引用。这是正在发生的情况的演示:



如果要保留对象,则必须使用new,而不是clear。您必须创建一个新对象来存储下一部分数据,因为添加到列表中并不会创建副本,而只是创建引用。因此,您基本上必须让添加的引用指向旧对象,然后从一个新对象开始。

09-27 03:26