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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -