0

我设法制作了一个程序,我可以在其中从 excel 文件中读取数据并将它们存储在 mysql 的表中。我的程序读取每个文件的第一行,为表创建字段并将其余数据存储为每列中的值。正因为这是以编程方式发生的,所以我选择使用 LinkedHashMap 读取所有值。一切正常。但是当我完成并测试我的程序时,我的控制台中出现错误。错误是由 LinkedHashMap 引起的,因为如果映射先前包含键的映射,则旧值将替换为指定值。

解析数据的代码如下:

private static List<TableRow> parseExcelColumnData(List sheetData) {
        // read each row from 1 to the last
        ArrayList<TableRow> tousRows = new ArrayList<TableRow>();
        for (int rowCounter = 1; rowCounter < sheetData.size(); rowCounter++) {

            List list = (List) sheetData.get(rowCounter);

            LinkedHashMap<String, Integer> tableFields = new LinkedHashMap(list
                    .size());
            String str;
            String[] tousFields = new String[list.size()];

            int i = 0;
            Cell cell = (Cell) list.get(0); // get the first column
            long currentID = (long) cell.getNumericCellValue();
            for (int j = 0; j < list.size(); j++) { //get the rest
                cell = (Cell) list.get(j); 
                if (cell != null) {
                    if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
                        ...
                                ...............
                    }
                }
            }
            tousRows.add(new TableRow(currentID, tableFields));
        }

        return tousRows;

    }

谁能帮助我如何将“tableFields”设为 ArrayList 以免替换旧值?

4

3 回答 3

1

您不能将相同的键两次放入哈希映射中。想象一个名为“字段”的地图,如下所示:“A => 1”。您将访问键 Afields.get("A")并期望值为 1。如果您现在再次将键 A 放入映射中,则它会像“A => 1,A => 2”。你希望得到什么结果fields.get("A")?在这种情况下,您无法决定是返回 1 还是返回 2。

这里要做的不是使用将字符串映射到整数的映射,而是必须将字符串映射到整数数组。代码如下所示:

    private static List<TableRow> parseExcelColumnData(List<?> sheetData) {
        // read each row from 1 to the last
        ArrayList<TableRow> tousRows = new ArrayList<TableRow>();
        for (int rowCounter = 1; rowCounter < sheetData.size(); rowCounter++) {

            List<?> list = (List<?>) sheetData.get(rowCounter);

            LinkedHashMap<String, List<Integer>> tableFields = new LinkedHashMap<String, List<Integer>>(list.size());
            String str;
            String[] tousFields = new String[list.size()];

            int i = 0;
            Cell cell = (Cell) list.get(0);
            long currentID = (long) cell.getNumericCellValue();
            for (int j = 0; j < list.size(); j++) {
                cell = (Cell) list.get(j); 
                if (cell != null) {
                    if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
                        put(tableFields, String.valueOf(cell.getNumericCellValue()), cell);
                    } else if (cell.getCellType() == Cell.CELL_TYPE_STRING) {
                        put(tableFields, cell.getStringCellValue(), cell);
                    } else if (cell.getCellType() == Cell.CELL_TYPE_BOOLEAN) {
                        put(tableFields, String.valueOf(cell.getBooleanCellValue()), cell);
                    } else if (cell.getCellType() == Cell.CELL_TYPE_BLANK) {
                        put(tableFields, cell.getStringCellValue(), cell);
                    }
                }
            }
            tousRows.add(new TableRow(currentID, tableFields));
        }

        return tousRows;

    }

    private static void put(LinkedHashMap<String, List<Integer>> tableFields, String cellValue, Cell cell) {
        if (!tableFields.containsKey(cellValue)) {
            tableFields.put(cellValue, new ArrayList<Integer>());
        }

        tableFields.get(cellValue).add(cell.getCellType());
    }

然后你会得到一个看起来像“A => [1, 2]”的地图。

于 2013-06-03T07:57:00.530 回答
0

您可以改用IdentityHashMap

也许您还需要将调用更改为put(key,value)into put(new String(key), value)

于 2013-06-03T07:57:14.717 回答
0

尝试一个对象

class MyModel {
   String first;
   Integer second;
}

然后像这样创建一个 ArrayList:

List<MyModel> tableFields = new ArrayList<MyObject>(list.size());
于 2013-06-03T07:52:28.247 回答