CSVLoader

The CSVLoader writes processed rows to a CSV file.

Configuration

XPath

Type

Description

csv/@outputFileName

Attribute

Name of the output CSV file (path relative to the project root).

Example

Input data

Row

stringField

integerField

1

String: value1

Integer: 1

2

String: value2

Integer: 2

Pipeline configuration

<csv outputFileName="data/output/output.csv"/>

File output

stringField

integerField

value1

1

value2

2

Pipeline output

Row

string

integer

1

String: value1

Integer: 1

2

String: value2

Integer: 2