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

i am having this challenge that have been driving me crazy and don't know how to fix it. I have developed an android application that will post some data to a remote url using post. here is my method to handle that

public static String fetchStringFromRemotePOST(String url,List<NameValuePair> nameValuePairs){
    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(url);
    Log.i("URL",url);
    String line = "";
    String content = "";
    try{
        post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
        HttpResponse response = client.execute(post);

        BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));

        while ((line = rd.readLine()) != null) {
          content += line;              
        }
    }catch(Exception e){
        Log.d("String Fetch ERROR",e.toString());
    }
    return content;
}

and to call the method

List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("post","okpokor"));      
String url = "http://wwww.host.com/post.php";    
String response = UtilMethod.fetchStringFromRemotePOST(url,nameValuePairs);

And also, i have included the internet permission in the Android manifest file

<uses-permission 
        android:name="android.permission.INTERNET" />
<application
 ...

I have gone through the same problem discussed on other threads previously and none of the suggestions really worked for me, suggestions like re-starting the Eclipse and AVD.

Really need help!

share|improve this question
you shouldn't concatenate Strings with +=, better use a StringBuilder instead – koljaTM Jan 15 at 8:52
Your code looks okay. Have you tried using the Browser in your Emulator to check if the Emulator has Internet connection? – Thommy Jan 15 at 8:53
Have you set INTERNET permission in your manifest file?Please work on your accept rate :) – AndroidLearner Jan 15 at 8:56
post stacktrace – njzk2 Jan 15 at 8:59
does your device actually have an internet connection ? – njzk2 Jan 15 at 9:00
show 3 more comments

closed as too localized by J. Steen, IceMAN, Gajotres, Emil Vikström, Tyler Crompton Jan 15 at 15:00

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 3 down vote accepted

Check your URL you have 4

wwww

,
change it to :

http://www.host.com/post.php

share|improve this answer
Thanks man, solved the problem that was a silly one from me... – jade Jan 15 at 9:21
Glad to help you! – EvZ Jan 15 at 9:28

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