我正在尝试更改列表中某个值的值,但我无法使用 set 方法找到一种方法。
List<?> row = rse.next();
index = row.indexOf("nyc");
row.set(index, "New York");
因此,我将结果集中的一行结果抓取到 ArrayList 中,我被迫这样做,所以我使用 ArrayList 或数组。我必须使用列表。
我知道这些值都是字符串,有没有办法在列表中找到“nyc”,并将其替换为“New York”。目前上面的代码给出了这个错误:
The method set(int, capture#4-of ?) in the type List<capture#4-of ?> is not
applicable for the arguments (int, String)