Skip to main content Skip to complementary content

Configuring the components

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));
    Information noteNote:

    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")
    Information noteNote:

    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.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!