java 读取excel
时间: 2023-08-09 09:07:34 浏览: 104
你可以使用 Apache POI 库来读取 Excel 文件。以下是一个示例代码:
```java
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelReader {
public static void main(String[] args) {
try {
// 指定 Excel 文件路径
File file = new File("path/to/your/excel.xlsx");
// 创建 FileInputStream 对象读取 Excel 文件
FileInputStream fis = new FileInputStream(file);
// 使用 XSSFWorkbook 加载 Excel 文件
Workbook workbook = new XSSFWorkbook(fis);
// 获取第一个工作表
Sheet sheet = workbook.getSheetAt(0);
// 遍历行
for (Row row : sheet) {
// 遍历单元格
for (Cell cell : row) {
// 获取单元格的值
String cellValue = cell.getStringCellValue();
System.out.print(cellValue + "\t");
}
System.out.println();
}
// 关闭文件流
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在代码中,你需要将 `path/to/your/excel.xlsx` 替换为你实际的 Excel 文件路径。这段代码使用 Apache POI 库中的 `XSSFWorkbook` 类来加载 Excel 文件,然后遍历工作表和单元格,从而读取 Excel 数据。
阅读全文