91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么讀取excel文件內容

小億
103
2023-09-20 15:16:43
欄目: 編程語言

可以使用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文件的內容被打印到控制臺上。

0
陵水| 南部县| 县级市| 莒南县| 镇江市| 无锡市| 时尚| 自贡市| 满洲里市| 斗六市| 重庆市| 迭部县| 安国市| 眉山市| 福海县| 大同市| 望奎县| 资溪县| 合山市| 武强县| 石狮市| 临西县| 新津县| 新闻| 烟台市| 大兴区| 江西省| 永年县| 湟源县| 武穴市| 西乌| 临沂市| 金塔县| 林甸县| 九寨沟县| 大同县| 赤水市| 烟台市| 甘南县| 开江县| 波密县|