读取execel表格数据代码
时间: 2023-09-22 14:09:11 浏览: 88
Python3读取和写入excel表格数据的示例代码
要读取Excel表格数据,可以使用Apache POI库来实现。下面是一个示例代码,演示了如何使用POI库读取Excel表格数据:
```java
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.*;
public class ReadExcelData {
public static void main(String[] args) {
try {
// 创建文件输入流
FileInputStream file = new FileInputStream("path/to/your/excel/file.xlsx");
// 创建工作簿对象
Workbook workbook = WorkbookFactory.create(file);
// 获取第一个工作表
Sheet sheet = workbook.getSheetAt(0);
// 遍历每一行
for (Row row : sheet) {
// 遍历每一列
for (Cell cell : row) {
// 获取单元格的值
String cellValue = "";
if (cell.getCellType() == CellType.STRING) {
cellValue = cell.getStringCellValue();
} else if (cell.getCellType() == CellType.NUMERIC) {
cellValue = String.valueOf(cell.getNumericCellValue());
} else if (cell.getCellType() == CellType.BOOLEAN) {
cellValue = String.valueOf(cell.getBooleanCellValue());
}
// 打印单元格的值
System.out.print(cellValue + "\t");
}
System.out.println();
}
// 关闭工作簿和文件输入流
workbook.close();
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在上面的代码中,你需要将"path/to/your/excel/file.xlsx"替换为你实际的Excel文件路径。该代码会打开文件并读取第一个工作表的所有数据,并将其打印到控制台上。你可以根据需要进行进一步处理。
阅读全文