<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Convert data from single CSV file to multiple JSON files using Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362009#M126227</link>
    <description>&lt;P&gt;The JSON file names will be something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000qR5cgAAC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150135i7212EB7F761638A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000qR5cgAAC.png" alt="0695b00000qR5cgAAC.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i.e. Assuming one of the records has as name "Rui" and as surname "Motta", the JSON file path and name will be "C:/Users/Rui/workspace/Rui_Motta.json"&lt;/P&gt;</description>
    <pubDate>Tue, 17 Oct 2023 10:33:06 GMT</pubDate>
    <dc:creator>RMotta2408</dc:creator>
    <dc:date>2023-10-17T10:33:06Z</dc:date>
    <item>
      <title>Convert data from single CSV file to multiple JSON files using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362006#M126224</link>
      <description>&lt;P&gt;I have below data in CSV file.&lt;/P&gt;&lt;P&gt;studentid,studentname,studentcity,studentmarks,studentcountry&lt;/P&gt;&lt;P&gt;1,john,blore,34,india&lt;/P&gt;&lt;P&gt;2,ham,blore,98,india&lt;/P&gt;&lt;P&gt;3,james,blore,93,india&lt;/P&gt;&lt;P&gt;I am able to transform above CSV to single JSON file using tFileOutputJSON.&lt;/P&gt;&lt;P&gt;How to convert data from each row of single CSV file to multiple JSON files using Talend. For the above data, for each row, a JSON file should be created.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362006#M126224</guid>
      <dc:creator>NNot_defined1675001307</dc:creator>
      <dc:date>2024-11-15T21:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Convert data from single CSV file to multiple JSON files using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362007#M126225</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you can solve your problem by reading the CSV file and then connecting the component tFileInputDelimited to tFlowToIterate. For each record, you will then generate a JSON file with tFileOutputJSON.&lt;/P&gt;&lt;P&gt;In order not to overwrite the JSON files, you can choose to add the current Datetime to its name and may use the name of the student to use in the file name as well.&lt;/P&gt;&lt;P&gt;Something like this: StudentName_CurrentDateTime.json&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 09:55:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362007#M126225</guid>
      <dc:creator>RMotta2408</dc:creator>
      <dc:date>2023-10-17T09:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Convert data from single CSV file to multiple JSON files using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362008#M126226</link>
      <description>&lt;P&gt;Something like this (in this case, the CSV has only NAME and SURNAME):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000qR5RjAAK.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142109i906F422713257BA7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000qR5RjAAK.png" alt="0695b00000qR5RjAAK.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000qR5aLAAS.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154600iA6422DF10112EF4C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000qR5aLAAS.png" alt="0695b00000qR5aLAAS.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 10:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362008#M126226</guid>
      <dc:creator>RMotta2408</dc:creator>
      <dc:date>2023-10-17T10:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Convert data from single CSV file to multiple JSON files using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362009#M126227</link>
      <description>&lt;P&gt;The JSON file names will be something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000qR5cgAAC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150135i7212EB7F761638A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000qR5cgAAC.png" alt="0695b00000qR5cgAAC.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i.e. Assuming one of the records has as name "Rui" and as surname "Motta", the JSON file path and name will be "C:/Users/Rui/workspace/Rui_Motta.json"&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 10:33:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-data-from-single-CSV-file-to-multiple-JSON-files-using/m-p/2362009#M126227</guid>
      <dc:creator>RMotta2408</dc:creator>
      <dc:date>2023-10-17T10:33:06Z</dc:date>
    </item>
  </channel>
</rss>

