`
Aina_hk55HK
  • 浏览: 387885 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

Android HttpClient网络通信

阅读更多
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" android:layout_width="fill_parent"
	android:layout_height="fill_parent">
	<Button android:text="GET" android:id="@+id/Button01"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content">
	</Button>
	<Button android:text="POST" android:id="@+id/Button02"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content">
	</Button>
	<TextView android:id="@+id/TextView" android:layout_width="fill_parent"
		android:layout_height="wrap_content"/>
</LinearLayout>



package com.Aina.Android;

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);
        btn_get.setOnClickListener(new Button.OnClickListener(){

			public void onClick(View v) {
				// TODO Auto-generated method stub
				String httpUrl = "http://192.168.0.132:8080/Android/httpreq.jsp?par=request-get";
				HttpGet request = new HttpGet(httpUrl);
				HttpClient httpClient = new DefaultHttpClient();
				try {
					HttpResponse response = httpClient.execute(request);
					if(response.getStatusLine().getStatusCode()==HttpStatus.SC_OK){
						String str = EntityUtils.toString(response.getEntity());
						tv_rp.setText(str);
					}else{
						tv_rp.setText("请求错误");
					} 
				} catch (ClientProtocolException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();	
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
        	
        });
        btn_post.setOnClickListener(new Button.OnClickListener(){

			public void onClick(View v) {
				// TODO Auto-generated method stub
				String httpUrl = "http://192.168.0.132:8080/Android/httpreq.jsp";
				HttpPost request = new HttpPost(httpUrl);
				List<NameValuePair> params = new ArrayList<NameValuePair>();
				params.add(new BasicNameValuePair("par","request-post"));
				try {
					HttpEntity entity = new UrlEncodedFormEntity(params, "UTF-8");
					request.setEntity(entity);
					HttpClient client = new DefaultHttpClient();
					HttpResponse response = client.execute(request);
					if(response.getStatusLine().getStatusCode()==HttpStatus.SC_OK){
						String str = EntityUtils.toString(response.getEntity());
						tv_rp.setText(str);
					}else{
						tv_rp.setText("请求错误");
					}
				} catch (UnsupportedEncodingException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				} catch (ClientProtocolException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
        	
        });
        new Thread(this).start();
    }
    public void refresh(){
    	String httpUrl = "http://192.168.0.132:8080/Android/httpreq.jsp";
    	try {
			URL url = new URL(httpUrl);
			HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
			urlConn.connect();
			InputStream input = urlConn.getInputStream();
			InputStreamReader inputreader = new InputStreamReader(input);
			BufferedReader reader = new BufferedReader(inputreader);
			String str = null;
			StringBuffer sb = new StringBuffer();
			while((str = reader.readLine())!= null){
				sb.append(str).append("\n");
			}
			if(sb != null){
				tv_rp.setText(sb.toString());
			}else{
				tv_rp.setText("NULL");
			}
			reader.close();
			inputreader.close();
			input.close();
			reader = null;
			inputreader = null;
			input = null;
		} catch (MalformedURLException e) {
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
    }
    public Handler handler = new Handler(){
    	public void handleMessage(Message msg){
    		super.handleMessage(msg);
    		refresh();
    	}
    };
	public void run() {
		// TODO Auto-generated method stub
		while(true){
			try {
				Thread.sleep(1000);
				handler.sendMessage(handler.obtainMessage());
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
}


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.Aina.Android"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Test"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

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

</manifest> 
分享到:
评论
2 楼 mzba520 2011-03-07  
不错,受益了。
1 楼 wangshiming88 2010-12-24  
private Button btn_get = null; private Button btn_post = null; private TextView tv_rp = null;button这些只用一次不用声明了在下面直接使用Button btn_get = (Button) this.findViewById(R.id.Button01);就像这样使用

相关推荐

    Android HttpClient用到的jar包

    总之,Apache HttpClient和其相关库为Android应用提供了强大的网络通信能力,特别是处理文件上传场景。正确理解和使用这些库可以帮助开发者高效地实现与服务器的交互,提高应用程序的用户体验。

    Android HttpClient工具类

    在Android开发中,HttpClient是一个常用的网络通信库,用于与服务器进行HTTP交互。虽然在Android API Level 23之后被标记为废弃,但仍有许多开发者选择继续使用它,因为它的功能强大且灵活。本篇文章将深入探讨...

    android httpclient demo

    然而,由于Android API Level 23之后不再支持HttpClient,开发者现在更多地转向使用OkHttp或Retrofit等现代网络库。尽管如此,对于旧项目或者对HttpClient有特定需求的场景,理解其工作原理和用法仍然很有价值。 1....

    android httpClient所需jar包

    本主题聚焦于"android httpClient所需jar包"以及与之相关的ksoap2库,这些都是Android应用开发中不可或缺的部分。 首先,让我们详细了解这些jar包的作用: 1. **commons-httpclient-3.1.jar**: 这是Apache ...

    android HttpClient

    在Android应用程序中,`HttpClient`经常被用于实现网络通信,比如上传或下载文件。下面将详细讨论`HttpClient`在Android中的应用及其相关知识点。 一、`HttpClient`基础 1. `HttpClient`类:它是整个框架的核心,...

    struts2 android httpclient 上传文件

    HttpClient是Apache的一个开源库,提供了一种在Java应用程序中实现HTTP协议的方法,常用于网络通信。 1. **Struts2文件上传**: 在Struts2中,文件上传主要依赖于`struts2-convention-plugin`和`struts2-core`的`...

    android httpClient

    标题“android httpClient”指出我们要讨论的是Android环境下使用HttpClient进行网络通信的相关技术。HttpClient允许开发者发送HTTP请求并接收响应,从而实现诸如下载、上传等网络操作。 描述中提到的“简单的一个...

    Android HttpClient源码

    总的来说,理解Android HttpClient的源码能够帮助我们更好地掌握网络请求的处理,提升应用程序的性能和可靠性。尽管现在推荐使用其他替代方案,但HttpClient仍然是一个学习HTTP通信和网络编程的宝贵资源。通过分析和...

    Android HttpClient Network Lib

    总结来说,`Android HttpClient Network Lib`是一个关于如何在Android应用中使用HttpClient进行网络通信的知识点,涵盖了HttpClient的基本使用方法、优势,以及如何利用提供的jar包和源码进行开发。虽然HttpClient已...

    Android_HttpClient_jar包+HttpClientJarAndSource

    在移动开发领域,Android平台上的网络通信是一个至关重要的环节,HttpClient作为早期广泛使用的网络请求库,对于许多开发者来说并不陌生。本资源"Android_HttpClient_jar包+HttpClientJarAndSource"包含了HttpClient...

    android httpclient文件上传 http协议post get方法向服务器传输数据

    在Android开发中,HTTPClient是常用的网络通信库,它提供了HTTP协议的支持,允许应用程序通过POST和GET方法向服务器传输数据。本项目中的四个知识点聚焦于HTTPClient的使用,特别是文件上传以及HTTP的基本请求方法。...

    Android使用HttpClient上传文件到服务器完整实例

    这些库提供了网络通信的基础功能。 接下来,我们创建一个`UploadFileToServer`类,用于处理文件上传。在这个类中,我们需要创建一个`HttpClient`实例,然后构造一个`HttpPost`对象,指定上传文件的URL。例如: ```...

    android网络通信最常用三种方式 URL,HTTPClient,Socket

    含客户端与服务器端的Demo,带有详细的注释,其中URL可用于下载、加载服务器资源,httpclient可用于传输数据(get/post方式传递json),socket可用于点对点即时通信;望大家多多批评、指教!

    Android httpclient httpmine4j

    总的来说,`Android httpclient httpmine4j`的使用主要是为了在Android应用中实现文件上传功能,通过`httpclient`进行网络通信,`httpmime`提供对Multipart/form-data的支持,使得上传文件变得可能。正确地配置和...

    Android Asynchronous HTTPClient的实现和优化

    在Android开发中,网络通信是应用的核心功能之一,而`Android Asynchronous HTTPClient`(也称为AsyncHttpClient)是一个流行的库,用于实现异步HTTP请求,它使得开发者可以在不阻塞主线程的情况下执行网络操作,...

    android httpclient 访问服务器 获取json数据

    在Android开发中,HTTPClient是常用的网络通信库之一,用于与服务器进行交互,获取或发送数据。本示例主要讲解如何使用HTTPClient访问服务器并获取JSON格式的数据。JSON(JavaScript Object Notation)是一种轻量级...

    HttpClient for android 4 3 5 jar

    在Android中,HttpClient库提供了与Web服务器进行HTTP通信的能力,支持各种HTTP方法(如GET、POST等),以及处理cookies、重定向、认证等功能。这个"HttpClient for android 4.3.5 jar"包含了两个文件:`httpclient-...

    Android的HttpClient开发实例

    在Android应用开发中,`HttpClient`是一个常用的网络通信库,尤其在早期的Android版本中,它是推荐的HTTP通信方式之一。本开发实例将带你深入理解如何在Android项目中使用`HttpClient`进行网络请求,实现数据的获取...

    Android使用HttpClient和HttpsUrlConnection两种方式访问https网站

    在Android中,我们可以使用`AndroidHttpClient`,它是`HttpClient`的一个优化版本,更适合Android平台。 #### 1.1 配置HttpClient访问HTTPS(不验证证书) ```java // 创建HttpClient实例 HttpClient httpClient =...

Global site tag (gtag.js) - Google Analytics