How to abort execution, if I only need few lines to be parsed? #27
-
In my project I need to split reading of CSV in to two parts.
if I use example code: How can I achieve point 1.? |
Beta Was this translation helpful? Give feedback.
Answered by
airbreather
Aug 30, 2021
Replies: 1 comment 1 reply
-
Recommendation is to use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
airbreather
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recommendation is to use
CsvReaderVisitorWithUTF8HeadersBase
as the base class for your visitor, since that gives you a special method that you can override to plug in your header-specific processing.