为什么我不能连接JSON?

时间:2015-04-15 19:15:33

标签: java json apache-poi

我需要连接BasicDBList中的所有BasicDBObject。每次循环运行时,我的BasicDBObject只包含 ONE 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())”) enter image description here

第二次 enter image description here

1 个答案:

答案 0 :(得分:2)

您正在尝试使用clear并一遍又一遍地使用相同的对象(dbLinha)来保存对象。那不会起作用。

将对象添加到列表时,会将引用添加到该对象,而不是该对象的副本到列表中。所以基本上,你第一次添加的是对dbLinha对象的引用,现在你让列表中的第一个项指向dbLinha设置的同一个对象。

然后你拨打dbLinha.clear()

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

您的列表将填充对您正在重复使用的单个对象的引用。以下是对正在发生的事情的演示:

Demonstration of the process

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