[Solved] How to parse this queryString which is a resultant of JSON response [closed]


It is NOT possible unless the URL parameter is properly URL-encoded, so the “&” characters will be escaped in order not to be interpreted as field separators.

The string should be encoded like this:

String queryString = "AQB=1&v1=somev1data&v25=somev25data&URL=http%3A%2F%2Fwww.someurl.com%2Fconfigure%2Fgetvalues%2Frequest1%3Dreq1Passed%26data2%3DsomedataPassed&ce=UTF-8&ARB=1";

As it is formatted in your question, the string cannot be parsed successively.

2

solved How to parse this queryString which is a resultant of JSON response [closed]