HI
Use below mapping.
UDF mapTDLINE:
Execution Type: All Values Of Context
public void mapTDLINE(String input[], ResultList result, Container container) throws StreamTransformationException { StringBuilder sb = new StringBuilder(); for (int i = 0; i < input.length; i++) { sb.append(input[i]); } result.addValue(sb.toString()); }
Test:
Regards,
Praveen.