要从xlsx文件中读取数据,可以使用Apache POI库。以下是一个示例代码:
dependencies {
implementation 'org.apache.poi:poi:4.1.2'
implementation 'org.apache.poi:poi-ooxml:4.1.2'
}
import org.apache.poi.ss.usermodel.*;
public void readExcelData() {
try {
// 创建一个工作簿对象
Workbook workbook = WorkbookFactory.create(new File("path/to/your/file.xlsx"));
// 获取第一个工作表
Sheet sheet = workbook.getSheetAt(0);
// 遍历每一行
for (Row row : sheet) {
// 遍历每一列
for (Cell cell : row) {
// 根据单元格类型读取数据
switch (cell.getCellType()) {
case STRING:
System.out.print(cell.getStringCellValue() + "\t");
break;
case NUMERIC:
System.out.print(cell.getNumericCellValue() + "\t");
break;
case BOOLEAN:
System.out.print(cell.getBooleanCellValue() + "\t");
break;
default:
System.out.print("\t");
}
}
System.out.println();
}
// 关闭工作簿
workbook.close();
} catch (Exception e) {
e.printStackTrace();
}
}
readExcelData();
请注意,上面的代码中的"path/to/your/file.xlsx"应替换为实际的文件路径。此外,还可以根据需要进行错误处理和数据转换。