可以使用Apache POI庫來讀取Excel文件內容。
首先,你需要下載并導入Apache POI庫。你可以在官方網站(https://poi.apache.org/)上找到所需的JAR文件。將JAR文件添加到你的項目中。
以下是一個簡單的例子,展示了如何使用Apache POI庫讀取Excel文件內容:
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.*;
public class ExcelReader {
public static void main(String[] args) {
try {
FileInputStream file = new FileInputStream("path/to/your/excel/file.xlsx"); // 替換為你的Excel文件路徑
Workbook workbook = WorkbookFactory.create(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;
default:
System.out.print("\t");
}
}
System.out.println();
}
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
在這個例子中,我們首先創建一個FileInputStream
對象來讀取Excel文件。然后,使用WorkbookFactory
類的create
方法創建一個Workbook
對象。接下來,我們使用getSheetAt
方法獲取第一個工作表。然后,我們使用兩個嵌套的for
循環遍歷工作表中的所有行和單元格。在每個單元格中,我們根據其類型使用getCellType
方法來獲取相應的值,并將其打印到控制臺。
你需要將path/to/your/excel/file.xlsx
替換為你的Excel文件的實際路徑。運行這個程序后,你應該能夠看到Excel文件的內容被打印到控制臺上。