13

我的问题的根源是我有一个方法可以处理 JDBC 查询并在查询后释放所有连接。一个“ResultSet”被传回调用方法。

我发现我不能简单地将 ResultSet 传递回调用方法,因为在 ResultSet 关闭的情况下,任何使用它的尝试都会得到一个已经关闭的错误。

因此,在关闭资源之前,我会遍历 ResultSet 并将其存储在 ArrayList 中。

因为该方法处理任何查询,所以我不知道返回的是哪种类型。因此 ArrayList 存储泛型 s。

这工作除了一个表中的一个字段.. 在一个数据库中,即一个 Integer[] 字段。

我从中得到的是一个 JDBC4Array 对象,并且我有一段时间将它放到 Integer[] 中以存储在 ArrayList 中。我确实需要它是一个整数 []。

这就是我现在所拥有的......这是在经历了很多沮丧的banjaxxing之后。

在循环通过 ResultSet 时,在连接关闭之前,我这样做:

            // For every row in the ResultSet
            while (rs.next()) {
                // Initialize a ITILRow for this ResultSet row
                ITILRow row = new ITILRow();

                // For each column in this row, add that object to the ITILRow
                for (int colNum=1; colNum<=numCols; colNum++) {
                    Object o = rs.getObject(colNum);

                    // JDBC4Array is a real pain in the butt
                    ArrayList<Integer> tmpList = new ArrayList<Integer>();
                    if (o != null) {
                        if (o.getClass().getSimpleName().endsWith("Array")) {
                            // At least at this time, these Arrays are all Integer[]
                            Array a = (Array) o;
                            Integer[] ints = (Integer[]) a.getArray();
                            for (Integer i : ints) {
                                tmpList.add(i);
                            }
                            o = tmpList;
                        }
                    }

                    row.add(o);
                }

                // Add the ITILRow to allRows
                allRows.add(row);
            }

然后,在调用方法中......

    for (ITILRow row : allRows) {
        ...
        ArrayList comps = (ArrayList) row.getObject(5);
        Integer[] argh = (Integer[]) ((ArrayList<Integer>) comps).toArray();

        ...
    }

我得到:

java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.Integer;

帮助将不胜感激。我已经把我的大脑绑在这个结上了。

谢谢,

4

1 回答 1

34

List#toArray()返回一个Object数组。改为使用List#toArray(T[])

Integer[] arg = (Integer[]) comps.toArray(new Integer[comps.size()]);
于 2013-02-27T22:11:32.777 回答