java 读取ecxel文件
时间: 2023-08-31 11:06:54 浏览: 98
你可以使用 Apache POI 库来读取 Excel 文件。以下是使用 Apache POI 的示例代码:
```java
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelReader {
public static void main(String[] args) {
try {
// 读取 Excel 文件
FileInputStream file = new FileInputStream(new File("path/to/your/excel/file.xlsx"));
// 创建 Workbook 对象
Workbook workbook = new XSSFWorkbook(file);
// 获取第一个工作表
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();
}
// 关闭文件流和 Workbook 对象
file.close();
workbook.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
请注意,上述示例是使用 Apache POI 4.1.2 版本的 XSSFWorkbook 类来读取 .xlsx 格式的 Excel 文件。如果你的 Excel 文件是旧版的 .xls 格式,可以使用 HSSFWorkbook 类代替 XSSFWorkbook 类。
记得将代码中的 "path/to/your/excel/file.xlsx" 替换为实际的 Excel 文件路径。
阅读全文