Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a HTTP GET request that I am attempting to send. I tried adding the parameters to this request by first creating a BasicHttpParams object and adding the parameters to that object, then calling setParams( basicHttpParms ) on my HttpGet object. This method fails. But if I manually add my parameters to my URL (i.e. append ?param1=value1&param2=value2) it succeeds.

I know I'm missing something here and any help would be greatly appreciated.

Thanks in advance,

groomsy

share|improve this question
For a GET request, the second method is the correct way to add parameters. I expect the first approach is for POST methods. – James Black Jun 2 '10 at 15:56

4 Answers

up vote 79 down vote accepted

I use a List of NameValuePair and URLEncodedUtils to create the url string I want.

protected String addLocationToUrl(String url){
    if(!url.endsWith("?"))
        url += "?";

    List<NameValuePair> params = new LinkedList<NameValuePair>();

    if (lat != 0.0 && lon != 0.0){
        params.add(new BasicNameValuePair("lat", String.valueOf(lat)));
        params.add(new BasicNameValuePair("lon", String.valueOf(lon)));
    }

    if (address != null && address.getPostalCode() != null)
        params.add(new BasicNameValuePair("postalCode", address.getPostalCode()));
    if (address != null && address.getCountryCode() != null)
        params.add(new BasicNameValuePair("country",address.getCountryCode()));

    params.add(new BasicNameValuePair("user", agent.uniqueId));

    String paramString = URLEncodedUtils.format(params, "utf-8");

    url += paramString;
    return url;
}
share|improve this answer
1  
considerably more correct than the accepted answer! – ohhorob Feb 6 '11 at 21:56
I agree. I've gone back and changed this as this method makes sense for larger amounts of parameters. The first accepted answer still works fine, but can be confusing for large sets of parameters. – groomsy Jul 11 '11 at 13:55
@Brian Griffey Thanks for good Solution. but i have little different format to pass parameter, Can anyone help me to pass this parameter..? How to pass parameter in this case? data = '{ "credential": { "accesToken": "668f514678c7e7f5e71a07044935d94c", "ACK": "cf3bb509623a8e8fc032a08098d9f7b3" }, "restIn": { "userId": 4, "listId": 5613 } } ; – Yog Guru Sep 21 '12 at 12:38
1  
correct is absolute, nothing to escalate :). Great answer for multiple reasons. – SatelliteSD Oct 12 '12 at 0:34
The other answer is much shorter and simpler for simple cases. It's not wrong, and worth considering. – qris Dec 5 '12 at 23:17

To build uri with get parameters, Uri.Builder provides a more effective way.

new Uri.Builder()
    .scheme("http")
    .authority("foo.com")
    .path("someservlet")
    .appendQueryParameter("param1", foo)
    .appendQueryParameter("param2", bar)
    .build();
share|improve this answer
Too bad it can't handle port numbers. Otherwise good answer. – IonuČ› G. Stan May 16 '11 at 18:41
6  
Uri.Builder b = Uri.parse("http://www.site.com:1234").buildUpon(); should work – Merlin Jul 29 '11 at 11:24
Also cant handle file parameters – siamii Jul 31 '11 at 4:40
@bizso09 "file parameters" do you mean query and fragment? They are both settable by the builder. Have a look at this for URI terminology, it helped me a lot developer.android.com/reference/java/net/URI.html – dvd Jan 24 at 22:16

The method

setParams() 

like

httpget.getParams().setParameter("http.socket.timeout", new Integer(5000));

only adds HttpProtocol parameters.

To execute the httpGet you should append your parameters to the url manually

HttpGet myGet = new HttpGet("http://foo.com/someservlet?param1=foo&param2=bar");

or use the post request the difference between get and post requests are explained here, if you are interested

share|improve this answer
Thank you for your help. I thought there might be a more effective way of adding parameters to GET requests. – groomsy Jun 2 '10 at 16:29
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("param1","value1");

String query = URLEncodedUtils.format(params, "utf-8");

URI url = URIUtils.createURI(scheme, userInfo, authority, port, path, query, fragment); //can be null
HttpGet httpGet = new HttpGet(url);

URI javadoc

Note: url = new URI(...) is buggy

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.