java - Bindy CRLF for UNMARSHAL -
i wanted unmarshall csv file bean. issue record separator or newline semi colon ";" csvannotation has crlf separator marhalling csv file. there work around reverse scenario. of replacing semicolon newline character.
but might have requirement newline conventaion "\r\n" or ";"
any suggestions of great help
you can set custom newline character
@csvrecord(separator = ",", crlf=";") public class order { ... }
Comments
Post a Comment