Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
if (input_row.tags!=null) {
for (Object str : input_row.tags) {
System.out.println(str);
}
}
if (input_row.tags!=null) {
for (Object str : input_row.tags) {
System.out.println(str);
}
}