DEV Community

Open Source SPL
Open Source SPL

Posted on

How to Store Specified CSV Columns to a New File #eg77

Problem description & analysis

Below is data in CSV file csv.csv:


upc14 column is the logically unique index by which data should be ordered. Get this column and name column to store them as a text file as follows:


Solution:

We write the following script p1.dfx in esProc:


Code description:

A1   Read string type upc14 column and name column from the CSV file.

A2  Sort A1’s data by upc14 column.

A3  Export A2’s result to result.txt.

See How to Call an SPL Script in Java to learn about the way of integrating the SPL code with a Java program.

Open source SPL source address

Download

Top comments (0)