While working with JSON files, one thing you must remember is that Talend doesn't support any JSON component like tExtractXMLField or so.
What should you do?
So, in order to solve this problem you need to follow the below steps:
STEP 1: First, you need to read the data from the source file line by line.
STEP 2: Next, you need to save the current line in a new delimited file (test.txt).
STEP 3: To extract test.txt, you can make use of tFileInputJSON and then perform the job logic.
STEP 4: Now using tFileDelete, you can delete the test.txt file and go to the next iteration of every new line.
Or the other way you can try out is, by using Custom Routines.
Routines in Talend work similar to Java functions using which you can write your own custom code. These can be invoked from anywhere inside a Job (using tMap, tJava etc.). These routines can then write in a file, print on a screen or return some list objects which you can utilize with another tJava, tJavaFlex, tJavaRow or any other components in a job.
At first, creating routines may look little complex and time consuming, but I can assure you that it will definitely help you in the long run.
Hope this will help!
Join the Talend course today to know more about and become expert.
Thanks.