skip to Main Content

How to use delimiter having multiple characters using apache commons csv

I have a input file whose delimiter is a combination of characters like #$#. But apache commons CSVParser consider only a character not multiple characters. Please find the input file: Rajeev Kumar Singh ♥#$#[email protected]#$#+91-9999999999#$#India Sachin Tendulkar#$#[email protected]#$#+91-9999999998#$#India Barak Obama#$#[email protected]#$#+1-1111111111#$#United States Donald…

VIEW QUESTION

Apache – Camel stop context when it is finished

If my understanding is correct, then camel routes do not have a 'complete' state therefore it doesn't make sense to say something like camelContext.addRoute(route1); camelContext.start(); while(0) { ifComplete(route1) break; } camelContext.stop(); and in most examples I've seen it is written…

VIEW QUESTION
Back To Top
Search