Apache POIでExcelファイルを読み書きする方法


https://grokonez.com/kotlin/kotlin-read-write-excel-file-apache-poi-example
Apache POIでExcelファイルを読み書きする方法
このチュートリアルでは、Apache PoIを使用してExcelファイルを読み書きするKotlinの例を見ていきます.
依存
<dependency>
    <groupId>org.jetbrains.kotlin</groupId>
    <artifactId>kotlin-stdlib</artifactId>
    <version>1.2.21</version>
</dependency>

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>3.17</version>
</dependency>
IIExcelファイルにデータを書き込む
  • シンプルなPOJOカスタマー( ID , name , address , age ):
    
    package com.javasampleapproach.kotlin.apachecsv
  • クラスカスタマー
    VAR ID : string =NULL
    var name : string ? =NULL
    var address : string =NULL
    VAR age : int = 0
    constructor() {}
    constructor(id: String?, name: String?, address: String?, age: Int) {
        this.id = id
        this.name = name
        this.address = address
        this.age = age
    }
    
    override fun toString(): String {
        return "Customer [id=" + id + ", name=" + name + ", address=" + address + ", age=" + age + "]"
    }
    
  • Excelファイルに書き込みます.
    その他:
    https://grokonez.com/kotlin/kotlin-read-write-excel-file-apache-poi-example
    Apache POIでExcelファイルを読み書きする方法