Configuring the components - 7.3

Delimited

Version
7.3
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Data Governance > Third-party systems > File components (Integration) > Delimited components
Data Quality and Preparation > Third-party systems > File components (Integration) > Delimited components
Design and Development > Third-party systems > File components (Integration) > Delimited components
Last publication date
2024-02-21

Procedure

  1. Double-click tJava to open its Basic settings view.
  2. In the Code area, type in the following command:
    new java.io.File("C:/myFolder").mkdirs(); 
    globalMap.put("out_file",new
    java.io.FileOutputStream("C:/myFolder/customerselection.txt",false));
    Note:

    In this scenario, the command we use in the Code area of tJava will create a new folder C:/myFolder where the output file customerselection.txt will be saved. You can customize the command in accordance with actual practice.

  3. Double-click tFileOutputDelimited to open its Basic settings view.
  4. Select Use Output Stream check box to enable the Output Stream field in which you can define the output stream using command.
    Fill in the Output Stream field with following command:
    (java.io.OutputStream)globalMap.get("out_file")
    Note:

    You can customize the command in the Output Stream field by pressing CTRL+SPACE to select built-in command from the list or type in the command into the field manually in accordance with actual practice. In this scenario, the command we use in the Output Stream field will call the java.io.OutputStream class to output the filtered data stream to a local file which is defined in the Code area of tJava in this scenario.

  5. Click Sync columns to retrieve the schema defined in the preceding component.
  6. Leave rest of the components as they were in the previous scenario.