I am stuck at converting a Json string into query string.
Actually, I want to create query string and from that query string I'll generate a SHA hash and set it in header to send to the server.
Please help!
I am stuck at converting a Json string into query string.
Actually, I want to create query string and from that query string I'll generate a SHA hash and set it in header to send to the server.
Please help!
On Android :
Uri uri=Uri.parse(url_string);
uri.getQueryParameter("para1");
On Android, the Apache libraries provide a Query parser:
http://developer.android.com/reference/org/apache/http/client/utils/URLEncodedUtils.html and http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/utils/URLEncodedUtils.html
Is your JSON String currently stored in a JSONObject? If not, this would be the best place to start. Something like this:
//And then construct your query string using the obtained values
Edit
Generic Method as suggested below...
Something like this:
If you have more questions regarding JSONObject parsing in Android these docs are very helpful