Currently I have a map containing key as a string & values as a list of strings. Map>
How can I convert these values from list of strings to a single string? eg: Below are the values which are contained in my map .
{id=[1057-27620], name=[apple,mango,banana], color=[apple:red, mango:yellow, banana:black&yellow], place=[greece]}
I want the above to be stored in Map<String,String>
as
{id="1057-27620", name="apple,mango,banana", color="apple:red, mango:yellow, banana:black&yellow", place="greece"}
How do I do that?