Android Forums

Go Back   These FORUMS ARE DISABLED!! OUR NEW FORUMS ARE AT http://androidforum.com/ > Android Software > Android Games And Applications
Connect with Facebook

Click Here To Register!
 
 
LinkBack Thread Tools Display Modes
Old 09-13-2009, 03:35 AM   #1
Junior Member
 
Join Date: Jul 2009
Posts: 4
Friends: 0
View et1carmen's Profile   View et1carmen's Photo Album   View et1carmen's Blog   View Social Groups
HI, as I am a beginner for Android.
Now I am trying to do a test application for sending HTTP Request.
But I find that my coding is not work.
So I hope someone can give me some ideas on it.
The following is my code:

package com.example.helloandroid;
import java.io.IOException;
import android.app.Activity;
import android.os.Bundle;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.*;
import org.apache.http.client.methods.*;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
try
{
HttpClient hc = new DefaultHttpClient();
HttpPost post = new HttpPost("www.yahoo.com.hk");

HttpResponse rp = hc.execute(post);

if(rp.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
{
String str = EntityUtils.toString(rp.getEntity());
}
}catch(IOException e){

}

@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(str);
//setContentView(R.layout.main);
}
}
et1carmen is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
 

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
App.Request: Codewallet BjornB Android Games And Applications 1 06-30-2009 11:51 AM
HTTP Conection winisa Android Development, Answers, Tutorials, and Code Snippets 2 02-18-2009 10:36 PM
How http connection???plz help... sreenaths1988 Android Chat 4 01-22-2009 04:10 PM
Http connection ritesh_tyfone Android Development, Answers, Tutorials, and Code Snippets 3 01-18-2009 08:33 AM
Android To Ship With Apache HTTP Client 4.0 Alpha? Clinker Android Development, Answers, Tutorials, and Code Snippets 0 07-17-2008 10:34 AM


Unlocked G1 Phones | Buy T-Mobile G1 | Google Phone

All times are GMT -6. The time now is 08:42 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Copyright (c) 2012 TalkAndroid.com. All rights reserved.