tFileInputJSON Use Case-Parse JSON using Talend
tFileInputJSON extracts JSON data from a file according to the JSONPath query, then transferring the data to a file, a database table.
tFileInputJSON Use Case : This post I will demonstrate you, how to parse JSON File using Talend. Below is our sample JSON File.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
“Person”:
{
“firstName”: “John”,
“lastName”: “Smith”,
“age”: 25,
“Address”:
{
“streetAddress”:“21 2nd Street”,
“city”:“New York”,
“state”:“NY”,
“postalCode”:“10021”
},
“PhoneNumbers”:
{
“home”:“212 555-1234”,
“fax”:“646 555-4567”
}
}
}
|