I have an array which has 3 JsonNodes. I managed to print the JsonNode that I want (which is an array)
Key: modelInformation
Value:[{"projectName":"Jum","modelName":"Jum01","modelId":"122"}}
Unfortunaly it looks like it merged the values together. How do I separate the key from the value in the Value section?
For example
Key: projectname
Value: Jum
field.getKey()
or field.getValue()
dosent work!
Key is modelInformation
and value is:
[{"projectName":"Jum","modelName":"Jum01","modelId":"122"}}