如何使用Java可以读取Excel文件中的内容,并将其输出。
时间: 2024-04-10 15:26:40 浏览: 124
java 读取Excel文件中的内容
4星 · 用户满意度95%
使用Java读取Excel文件中的内容并将其输出,可以使用Apache POI库来实现。下面是一个简单的示例代码:
```java
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ReadExcel {
public static void main(String[] args) {
try {
FileInputStream file = new FileInputStream("path/to/your/excel/file.xlsx");
// 创建一个工作簿对象
Workbook workbook = new XSSFWorkbook(file);
// 获取第一个工作表
Sheet sheet = workbook.getSheetAt(0);
// 遍历工作表中的所有行
for (Row row : sheet) {
// 遍历当前行中的所有单元格
for (Cell cell : row) {
// 读取单元格的值并输出
switch (cell.getCellType()) {
case STRING:
System.out.print(cell.getStringCellValue() + "\t");
break;
case NUMERIC:
System.out.print(cell.getNumericCellValue() + "\t");
break;
case BOOLEAN:
System.out.print(cell.getBooleanCellValue() + "\t");
break;
case BLANK:
System.out.print("" + "\t");
break;
default:
System.out.print("" + "\t");
}
}
System.out.println(); // 换行
}
// 关闭工作簿和文件流
workbook.close();
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
你需要将代码中的 "path/to/your/excel/file.xlsx" 替换为你实际的Excel文件路径。这段代码可以读取Excel文件的第一个工作表中的所有内容,并将其输出到控制台。你可以根据需要进行修改和扩展。
阅读全文