在Java中讀取Excel文件通常使用Apache POI庫。以下是一個簡單的示例代碼,演示如何使用Java讀取Excel文件中的內(nèi)容:
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 {
FileInputStream file = new FileInputStream(new File("path/to/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("BLANK\t");
break;
default:
System.out.print("UNKNOWN\t");
}
}
System.out.println();
}
file.close();
workbook.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
在這個示例代碼中,我們使用了FileInputStream
類來讀取Excel文件,然后使用XSSFWorkbook
類來加載工作簿。接著,我們獲取工作表中的第一個工作表,并遍歷所有的行和單元格來獲取單元格的內(nèi)容。最后,我們根據(jù)單元格的類型分別打印出內(nèi)容。
請注意,需要將poi
和poi-ooxml
等相關(guān)jar包添加到項目的classpath中才能成功編譯和運行此代碼。