用java读取Excel
时间: 2024-03-09 07:18:19 浏览: 112
可以使用Java中的Apache POI库来读取Excel文件。
以下是读取Excel文件的示例代码:
```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.ss.usermodel.WorkbookFactory;
public class ReadExcelFile {
public static void main(String[] args) {
try {
// 指定要读取的Excel文件路径和文件名
String excelFilePath = "C:/Users/username/Documents/ExcelFile.xlsx";
FileInputStream inputStream = new FileInputStream(new File(excelFilePath));
// 通过Apache POI库中的WorkbookFactory类来创建Workbook对象
Workbook workbook = WorkbookFactory.create(inputStream);
// 获取Excel文件中的第一个工作表
Sheet sheet = workbook.getSheetAt(0);
// 遍历工作表中的每一行
for (Row row : sheet) {
// 遍历当前行中的每一列
for (Cell cell : row) {
// 输出单元格的内容
System.out.print(cell.toString() + "\t");
}
System.out.println();
}
// 关闭工作簿和输入流
workbook.close();
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在读取Excel文件之前,需要将Apache POI库添加到Java项目的类路径中。可以从以下链接下载POI库:
https://poi.apache.org/download.html
下载后,将poi-xxx.jar、poi-ooxml-xxx.jar和poi-ooxml-schemas-xxx.jar文件添加到Java项目的类路径中即可。
阅读全文