I have the following string value:
'[
{
"fruit":"apple",
"color":"green"
},
{
"fruit":"banana",
"color":"yellow"
},
{
"fruit":"lime",
"color":"green"
},
{
"fruit":"peach",
"color":"pink"
}
]'
which I like to convert back to a json object in java but I have no clue how to achieve this.
Anyone who can guide me?