3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

OpenCsvでCsvBindByName指定で定義順に出力するには?

Last updated at Posted at 2020-02-20

はじめに

CSVフォーマットよく使うんですけど、実は罠が多いですよね。
なので自分でコーディングしないでライブラリを利用するのが大事なんですが、java用のopencsvを使うとヘッダに合わせてデータを読んでくれて便利なんです。
しかし、そのまま出力しようとすると、なんということでしょう。カラム名順にソートして出力してくれます。
世界中の人がそれで困っているようなのですが、簡潔に解決できましたので共有します。

コード

inline fun <reified T : Any> writeCsv(filename: String, data: List<T>): Unit {
    FileWriter(filename).use { fileWriter ->
        StatefulBeanToCsvBuilder<T>(fileWriter)
            .withMappingStrategy(
                HeaderColumnNameMappingStrategy<T>()
                    .apply {
                        type = T::class.java
                        val headers = FieldUtils.getAllFields(type)
                            .map {
                                it.getAnnotation(CsvBindByName::class.java).column
                            }
                        setColumnOrderOnWrite(compareBy { headers.indexOf(it) })
                    })
            .build()
            .write(data)
    }
}

解説

HeaderColumnNameMappingStrategyが元のヘッダのカラム名でマッピングして読み込むためのものなのですが、実はそいつにsetColumnOrderOnWriteがいまして、それで出力順を変更できます。
しかし、文字列になってからなので文字列でしかこれだけだとソートできません。
なので、カラム名を定義順に取得しなおします。
その後、ソートを定義順にしてやれば出来上がりです。

参考リンク

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?