We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
大変便利なライブラリでありがたく使用させていただいております。 使用させていただいて1点問題がありましたので報告させていただきます。
@CSVColumn で数値項目に format を指定した時の挙動ですが、内部実装をみると CsvEntityTemplate#createFormat() にて、DecimalFormat を使用しています。 DecimalFormat は残念なことにデフォルトの RoundingMode が HALF_EVEN なので、厳密な四捨五入を求める場面では適しません。
結局、POJO を String 型で定義し、フォーマット処理をライブラリ外で行うような実装することで回避しましたが、@CSVColumn で RoundingMode が指定できる、もしくは、CsvConfig でグローバルに RoundingMode が指定できると大変ありがたいです。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
大変便利なライブラリでありがたく使用させていただいております。
使用させていただいて1点問題がありましたので報告させていただきます。
@CSVColumn で数値項目に format を指定した時の挙動ですが、内部実装をみると
CsvEntityTemplate#createFormat() にて、DecimalFormat を使用しています。
DecimalFormat は残念なことにデフォルトの RoundingMode が HALF_EVEN なので、厳密な四捨五入を求める場面では適しません。
結局、POJO を String 型で定義し、フォーマット処理をライブラリ外で行うような実装することで回避しましたが、@CSVColumn で RoundingMode が指定できる、もしくは、CsvConfig でグローバルに RoundingMode が指定できると大変ありがたいです。
The text was updated successfully, but these errors were encountered: