I have csv like this:
31 name 2018-11-01 2018-10-31 12:05:16 3
1 10 1.00 13.00 14
2 20 1.00 14.00 14
3 30 1.00 15.00 14
fields in one line are separated by tab
and next I have another lines, separated tab too. Every line is separated by '\n'
How should me classes looks like?
I did something like this:
public class Order {
private int id;
private String name;
private String date1;
private int date2;
private char numerOfFile;
private List<OrderBody> orderBodyList;
}
public class OrderBody {
private int lp;
private int id;
private BigDecimal priceByOne;
private BigDecimal count;
private int foreignId;
}
This is actually possible with camel-bindy using FixedLengthRecord model with tab as delimiter. Last field in the model seems to need a length but the others can use tab as a delimiter....
Here's an example code:
OrderHeader:
Order:
XmlOrder:
Route:
OrderProcessor:
This example route will output something like:
You can check full sources for this in github