CSVファイルを読む方法


https://grokonez.com/kotlin/kotlin-read-write-csv-file-example
CSVファイルを読む方法
このチュートリアルでは、ネイティブのKollinを使用してCSVファイルを読み書きする例を見ていきます.
CSVファイルにデータを書き込む
  • シンプルなPOJOカスタマー( ID , name , address , age ):
    
    package com.javasampleapproach.kotlin.csv
  • クラスカスタマー
    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 + "]"
    }
    
  • 顧客リストをCSVファイルに書きます:
  • その他:
    https://grokonez.com/kotlin/kotlin-read-write-csv-file-example
    CSVファイルを読む方法