Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Getting json Array

Hi,
I read a json flow like this

{
   "id": 89170,
   "created_at": "2016-08-05T15:54:43Z",
   "updated_at": "2016-08-08T09:52:46Z",
   "tags":    [
      "test_tag",
      "test_tag2"
   ],
}


I couldn't manage to see the tags data.
I try in a String with isArray unchecked, a String with Array checked, A list with isArraChecked (IsArray is the property of my textractjsonfield) : no success.

Thanks for your help

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Sorry. I do not take time to update my post.
In fact it's working without any problem with textractjsonfield.
The ws from where I get the data didn't give the information so I do not have output.
So you can get these tags into a list with textractjsonfield.
Afterwards you can use it in a tjavarow for example : 

if (input_row.tags!=null) {
for (Object str : input_row.tags) {
System.out.println(str);
}
}

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Hi,
Have you tried to use tfileinputjson component to see if it works?
Best regards
Sabrina
Anonymous
Not applicable
Author

Sorry. I do not take time to update my post.
In fact it's working without any problem with textractjsonfield.
The ws from where I get the data didn't give the information so I do not have output.
So you can get these tags into a list with textractjsonfield.
Afterwards you can use it in a tjavarow for example : 

if (input_row.tags!=null) {
for (Object str : input_row.tags) {
System.out.println(str);
}
}
Anonymous
Not applicable
Author

Hi,
Thanks for posting that you have resolved your issue and sharing your solution with us.
Best regards
Sabrina