gpt4 book ai didi

java - 从 Excel 中读取几列/行数据并获取列表

转载 作者:行者123 更新时间:2023-12-02 04:54:05 24 4
gpt4 key购买 nike

从 Excel 中读取几列/行数据并获取列表。

我有 17 列和 2 行 xls 数据,我想读取 Excel 并将数据存储为列表,以便将结果与其他数据进行比较。

提前致谢。

最佳答案

首次下载jxl here

接下来尝试这样的事情

Workbook workBook
try {
w = Workbook.getWorkbook([File object]);
Sheet sheet = workBook.getSheet(0);

for (int j = 0; j < sheet.getColumns(); j++) {
for (int i = 0; i < sheet.getRows(); i++) {
Cell cell = sheet.getCell(j, i);
cell.getContents());
}
}

关于java - 从 Excel 中读取几列/行数据并获取列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28948644/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com