所以目前,我有一个 ArrayList 看起来像:
[ [id, type, name, $], [id, type, name, $], [id, type, name, $], [id, type, name, $]....]
现在说如果我想比较索引 0 和 1,或者我想在逗号后添加另一个值:
[id, type, name, $, YOLO]
我该怎么做呢?谢谢!
编辑:这里有一些东西:
我正在从 Excel 中读取数据:
for (int i = first; i <= last; i++) {
Row row = sheet.getRow(i);
Cell id = row.getCell(0);
Cell type = row.getCell(1);
Cell name = row.getCell(2);
Cell $ = row.getCell(3);
List temp = new ArrayList();
temp.add(id);
temp.add(type);
temp.add(name);
temp.add($);
sData.add(temp);
}
然后当您打印 sData 时,它会准确显示我之前所说的内容。