Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 csv 文件解组为 Bean。问题是记录分隔符或换行符将是分号“;” CSVAnnotation 有一个 crlf 分隔符,用于编组为 csv 文件。是否有针对相反情况的解决方法。截至目前,我正在用 NEWLINE 字符替换分号。
但我可能有一个要求,其中 NEWLINE 可以是约定 "\r\n" 或 ";"
任何建议都会有很大帮助
您可以设置自定义换行符
@CsvRecord(separator = ",", crlf=";") public Class Order { ... }