java读取excel表数据
时间: 2023-11-12 22:56:21 浏览: 72
可以使用POI库来读取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.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ReadExcelFile {
public static void main(String[] args) {
try {
FileInputStream file = new FileInputStream(new File("example.xlsx"));
// 创建工作簿对象
XSSFWorkbook workbook = new XSSFWorkbook(file);
// 获取第一个工作表
XSSFSheet sheet = workbook.getSheetAt(0);
// 遍历行
for (Row row : sheet) {
// 遍历单元格
for (Cell cell : row) {
// 输出单元格的值
System.out.print(cell.getStringCellValue() + "\t");
}
System.out.println();
}
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
阅读全文