Skip to content
Advertisement

How to print only the header into a string in Jackson CSVMapper

I am using Jackson CSVMapper to read a tab separated text file into a list of java objects, and write it back into another tab separated text file. My class looks like this:

JavaScript

Parser code:

JavaScript

Writer code:

JavaScript

I want to extract just the header irrespective of the data. So,

JavaScript

should return

JavaScript

How can I do it?

Thanks!

Advertisement

Answer

The following worked:

JavaScript

reference: @cassiomolin ‘s answer

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement