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

溫馨提示×

java office 怎樣讀寫Excel文件

小樊
82
2024-08-05 22:17:13
欄目: 編程語言

在Java中,可以使用Apache POI庫來讀寫Excel文件。以下是一個簡單的示例代碼,演示如何讀取和寫入Excel文件:

  1. 讀取Excel文件:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

public class ReadExcelFile {

    public static void main(String[] args) {
        try {
            FileInputStream file = new FileInputStream("example.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;
                        default:
                            System.out.print(" \t");
                    }
                }
                System.out.println();
            }

            workbook.close();
            file.close();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
  1. 寫入Excel文件:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.FileOutputStream;
import java.io.IOException;

public class WriteExcelFile {

    public static void main(String[] args) {
        try {
            Workbook workbook = new XSSFWorkbook();
            Sheet sheet = workbook.createSheet("Sheet1");

            Row row = sheet.createRow(0);
            Cell cell = row.createCell(0);
            cell.setCellValue("Hello");

            FileOutputStream fileOut = new FileOutputStream("output.xlsx");
            workbook.write(fileOut);

            workbook.close();
            fileOut.close();

        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

以上是一個簡單的示例,你可以根據自己的需求修改代碼以滿足具體的需求。希望對你有幫助。

0
甘南县| 贡山| 平昌县| 荥阳市| 富阳市| 呼伦贝尔市| 大石桥市| 焉耆| 盈江县| 永安市| 克拉玛依市| 吐鲁番市| 左贡县| 汾西县| 阳山县| 吉木萨尔县| 龙门县| 彰化县| 弋阳县| 盐边县| 湟中县| 蛟河市| 朝阳市| 邹城市| 镇远县| 略阳县| 信宜市| 丰顺县| 长岭县| 晋州市| 琼结县| 应城市| 亳州市| 融水| 桐梓县| 乌兰察布市| 定兴县| 绵竹市| 吴桥县| 三门县| 宝鸡市|