Re: unmarshal(CsvDataFormat). different behavior for one or multiples lines.

2011-09-12 Thread Claus Ibsen
;>    } >> } >> >> class MyLog implements Processor { >>    public void process(Exchange exchange) throws Exception { >>        List<List<String>> data = (List<List<String>>) >> exchange.getIn().getBody(); >>        for (List line : data) { >>            System.out.println(String.format("TEST %s

Re: unmarshal(CsvDataFormat). different behavior for one or multiples lines.

2011-09-07 Thread Claus Ibsen
xception { >        List<List<String>> data = (List<List<String>>) > exchange.getIn().getBody(); >        for (List line : data) { >            System.out.println(String.format("TEST %s - %s - %s", > line.get(0), line.get(1), line.get(2))); >  

Re: unmarshal(CsvDataFormat). different behavior for one or multiples lines.

2011-09-07 Thread Filippo Balicchia
>        List<List<String>> data = (List<List<String>>) > exchange.getIn().getBody(); >        for (List line : data) { >            System.out.println(String.format("TEST %s - %s - %s", > line.get(0), line.get(1), line.get(2))); >        } >    }

unmarshal(CsvDataFormat). different behavior for one or multiples lines.

2011-09-07 Thread dportabella
dy(); for (List line : data) { System.out.println(String.format("TEST %s - %s - %s", line.get(0), line.get(1), line.get(2))); } } } ++++++++ -- View this message in context: http://camel.465427.n5.nabble.com/unmarshal-CsvDat