I'm using apache camel in a routing context to integrate some CSV files. If I want to skip the first line of the csv I can easily do it in the unmarshal:
<unmarshal>
<csv delimiter=";" skipFirstLine="true"/>
</unmarshal>
My question is, whats the best way to ignore/skip the last line of the file ?
Thank you in advance,