Hi I have below string and I have to split and put in a map . While splitting through string tokenizer or .split method i am not getting the result i want.Below is my string
{"errorCode":"specialChars.allowed","errorParams":["a-zA-Z0-9^][_{|}=~!\"#$%&()*+,-.:'\\/?@space"]}
I want
Key:errorCode Value:specialChars.allowed
Key:errorParams Value:[
"a-zA-Z0-9^][_{|}=~!\"#$%&()*+,-.:'\\/?@space"
]