Hi everyone!
I need to import a txt file with Linux end of line.
I used UniversalDataReader to import the file but when I run the graph it crashes with the following error:
org.jetel.exception.BadDataFormatException: Parsing error: Unexpected default field delimiter, probably record has too many fields. in field # 23 of record # 1, value: ‘<Raw record data is not available, please turn on verbose mode.>’
at org.jetel.data.parser.DataParser.parsingErrorFound(DataParser.java:530)
at org.jetel.data.parser.DataParser.parseNext(DataParser.java:436)
at org.jetel.data.parser.DataParser.getNext(DataParser.java:169)
at org.jetel.util.MultiFileReader.getNext(MultiFileReader.java:321)
at org.jetel.component.DataReader.execute(DataReader.java:217)
at org.jetel.graph.Node.run(Node.java:390)
at java.lang.Thread.run(Unknown Source)
If I import the same file with Windows end of line everything works!
How can I solve this issue?