WEB开发网
开发学院手机开发Android 开发 Android HttpClient网络通信 阅读

Android HttpClient网络通信

 2010-07-13 21:24:00 来源:WEB开发网   
核心提示:import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.UnsupportedEncodingException

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.io.UnsupportedEncodingException;

import java.net.HttpURLConnection;

import java.net.MalformedURLException;

import java.net.URL;

import java.util.ArrayList;

import java.util.List;

import org.apache.http.HttpEntity;

import org.apache.http.HttpResponse;

import org.apache.http.HttpStatus;

import org.apache.http.NameValuePair;

import org.apache.http.client.ClientProtocolException;

import org.apache.http.client.HttpClient;

import org.apache.http.client.entity.UrlEncodedFormEntity;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.methods.HttpPost;

import org.apache.http.impl.client.DefaultHttpClient;

import org.apache.http.message.BasicNameValuePair;

import org.apache.http.util.EntityUtils;

import android.app.Activity;

import android.os.Bundle;

import android.os.Handler;

import android.os.Message;

import android.view.View;

import android.widget.Button;

import android.widget.TextView;

public class Test extends Activity implements Runnable{

/** Called when the activity is first created. */

private Button btn_get = null;

private Button btn_post = null;

private TextView tv_rp = null;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

btn_get = (Button) this.findViewById(R.id.Button01);

btn_post = (Button) this.findViewById(R.id.Button02);

tv_rp = (TextView) this.findViewById(R.id.TextView);

上一页  1 2 3 4 5 6 7 8  下一页

Tags:Android HttpClient 网络通信

编辑录入:coldstar [复制链接] [打 印]
赞助商链接