在Java中读取Excel文件的内容,可以使用 Apache POI 库。以下是一个简单的示例代码来读取Excel文件中的内容:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
public class ReadExcelFile {
public static void main(String[] args) {
try {
File file = new File("example.xlsx");
FileInputStream fis = new FileInputStream(file);
Workbook workbook = new XSSFWorkbook(fis);
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("BLANK" + "\t");
break;
default:
System.out.print("UNKNOWN" + "\t");
break;
}
}
System.out.println();
}
fis.close();
workbook.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
在这个示例中,首先通过 FileInputStream 从文件中读取 Excel 文件,然后创建一个 XSSFWorkbook 对象来处理 Excel 文件。然后获取第一个工作表并遍历每一行和每一个单元格,根据单元格的类型读取其内容并输出到控制台。最后关闭输入流和工作簿。