• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps application crashes

jammy992

Lurker
im writing my first application connecting with my website. But it crashes when i use this code. anyone can help me?
Code:
            //Create a new HttpClient and Post Header
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("httpwwwwebsitecom/android/save.php");
      
             try {
                 // Add your data
                 List <NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
                 nameValuePairs.add(new BasicNameValuePair("id", "12345"));
                 nameValuePairs.add(new BasicNameValuePair("stringdata", "AndDev is Cool!"));
                 httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                 
                 // Execute HTTP Post Request
                 HttpResponse response = httpclient.execute(httppost);
                
             } catch (ClientProtocolException e) {
                 //e.printStackTrace();
                 // TODO Auto-generated catch block
             } catch (IOException e) {
                 //e.printStackTrace();
                 // TODO Auto-generated catch block
             }
 
Some error message would be helpful.

HttpPost httppost = new HttpPost("httpwwwwebsitecom/android/save.php");

I presume this is just a dummy line and not the actual URL that you're using in your code?
 
Back
Top Bottom