In my project, I am using Spring batch and reading a file using FlatFileItemReader/FieldSetMapper. There is problem with some input files.The lines are cut/malformed for few records.
Assume the input file has 4 columns. few columns not formed properly. Can anyone please helpme in fixing this issue?(I could explain more if needed)
File.csv
"id","name","age","salary"
"1","user1","28","1000"
"2","user2","27","2000"
"3","user3","26
","3000"
"4","user4","25","
4000"
"5","
user5","24","5000"
"6","user6","23","6000"
"7","user7","22","7000"
"8","user8","21","8000"
I had similar issue while reading malformed lines with FlatFileItemReader. In this case, you can use a DefaultRecordSeparatorPolicy as a RecordSeparatorPolicy in FlatFileItemReader. What it does is it checks for endOfRecord after reading a line. If the read line has any uncommented quotes, it reads the another line to normalize the input. You can also override the behavior.
flatFileItemReader.setRecordSeparatorPolicy(new DefaultRecordSeparatorPolicy());
Refer DefaultRecordSeparatorPolicy API Doc for more information