简单使用URLConnection、HttpURLConnection和HttpClient访问网络资源

标签: urlconnection httpurlconnection httpclient | 发表时间:2013-07-17 01:56 | 作者:u010142437
出处:http://blog.csdn.net

URL的openConnection方法将返回一个URLConnection,该对象表示应用程序和URL之间的通信连接。程序可以通过它的实例向该URL发送请求,读取URL引用的资源。

下面通过一个简单示例来演示:

Activity:
package com.home.urlconnection;

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.List;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
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.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.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebView;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity implements OnClickListener {
	private Button urlConnectionBtn;
	private Button httpUrlConnectionBtn;
	private Button httpClientBtn;
	private TextView showTextView;
	private WebView webView;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		init();
	}

	private void init() {
		urlConnectionBtn = (Button) findViewById(R.id.test_url_main_btn_urlconnection);
		httpUrlConnectionBtn = (Button) findViewById(R.id.test_url_main_btn_httpurlconnection);
		httpClientBtn = (Button) findViewById(R.id.test_url_main_btn_httpclient);
		showTextView = (TextView) findViewById(R.id.test_url_main_tv_show);
		webView = (WebView) findViewById(R.id.test_url_main_wv);
		urlConnectionBtn.setOnClickListener(this);
		httpUrlConnectionBtn.setOnClickListener(this);
		httpClientBtn.setOnClickListener(this);
	}

	@Override
	public void onClick(View v) {
		if (v == urlConnectionBtn) {
			try {
				// 直接使用URLConnection对象进行连接
				URL url = new URL("http://192.168.1.100:8080/myweb/hello.jsp");
				// 得到URLConnection对象
				URLConnection connection = url.openConnection();
				InputStream is = connection.getInputStream();
				byte[] bs = new byte[1024];
				int len = 0;
				StringBuffer sb = new StringBuffer();
				while ((len = is.read(bs)) != -1) {
					String str = new String(bs, 0, len);
					sb.append(str);
				}
				showTextView.setText(sb.toString());
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		if (v == httpUrlConnectionBtn) {
			// 直接使用HttpURLConnection对象进行连接
			try {
				URL url = new URL(
						"http://192.168.1.100:8080/myweb/hello.jsp?username=abc");
				// 得到HttpURLConnection对象
				HttpURLConnection connection = (HttpURLConnection) url
						.openConnection();
				// 设置为GET方式
				connection.setRequestMethod("GET");
				if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
					// 得到响应消息
					String message = connection.getResponseMessage();
					showTextView.setText(message);
				}
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		if (v == httpClientBtn) {
			try {
				// 使用ApacheHttp客户端进行连接(重要方法)
				HttpClient client = new DefaultHttpClient();

				// 如果是Get提交则创建HttpGet对象,否则创建HttpPost对象
				// POST提交的方式
				HttpPost httpPost = new HttpPost(
						"http://192.168.1.100:8080/myweb/hello.jsp");
				// 如果是Post提交可以将参数封装到集合中传递
				List dataList = new ArrayList();
				dataList.add(new BasicNameValuePair("username", "abc"));
				dataList.add(new BasicNameValuePair("pwd", "123"));
				// UrlEncodedFormEntity用于将集合转换为Entity对象
				httpPost.setEntity(new UrlEncodedFormEntity(dataList));

				// GET提交的方式
				// HttpGet httpGet = new
				// HttpGet("http://192.168.1.100:8080/myweb/hello.jsp?username=abc&pwd=321");

				// 获取相应消息
				HttpResponse httpResponse = client.execute(httpPost);
				// 获取消息内容
				HttpEntity entity = httpResponse.getEntity();
				// 把消息对象直接转换为字符串
				String content = EntityUtils.toString(entity);
				// 显示在TextView中
				// showTextView.setText(content);

				// 通过webview来解析网页
				webView.loadDataWithBaseURL(null, content, "text/html",
						"utf-8", null);
				// 直接根据url来进行解析
				// webView.loadUrl(url);
			} catch (ClientProtocolException e) {
				e.printStackTrace();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}
上面使用到的url是部署在笔者本机的web应用,这里不再给出,大家可以换成自己的web应用即可。
布局XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/test_url_main_btn_urlconnection"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="使用URLConnection连接" />

    <Button
        android:id="@+id/test_url_main_btn_httpurlconnection"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="使用HttpURLConnection连接" />

    <Button
        android:id="@+id/test_url_main_btn_httpclient"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="使用Apache客户端连接" />

    <TextView
        android:id="@+id/test_url_main_tv_show"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <WebView
        android:id="@+id/test_url_main_wv"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>
权限:
 <uses-permission android:name="android.permission.INTERNET" />


作者:u010142437 发表于2013-7-17 1:56:25 原文链接
阅读:257 评论:0 查看评论

相关 [urlconnection httpurlconnection httpclient] 推荐:

简单使用URLConnection、HttpURLConnection和HttpClient访问网络资源

- - CSDN博客移动开发推荐文章
URL的openConnection方法将返回一个URLConnection,该对象表示应用程序和URL之间的通信连接. 程序可以通过它的实例向该URL发送请求,读取URL引用的资源. 下面通过一个简单示例来演示:. // 直接使用URLConnection对象进行连接. // 得到URLConnection对象.

Android HttpURLConnection及HttpClient选择

- - Trinea
介绍Android中Http请求方式的选择、区别及几个常用框架对API的选择. Android Http请求API主要分两种:. 第一种是Java的HttpURLConnection,默认带gzip压缩. 第二种Apache的HttpClient,默认不带gzip压缩. 两种方式请求connection都是keep alive,默认User-Agent不同.

HttpUrlconnection 、Httpclient get 、post 请求核心代码

- - CSDN博客推荐文章
HttpURLConnection的使用  . * URL请求的类别分为二类,GET与POST请求. * a:) get请求可以获取静态页面,也可以把参数放在URL字串后面,传递给servlet, . * b:) post与get的不同之处在于post的参数不是放在URL字串里面,而是放在http请求的正文内.

[译]Android访问网络,使用HttpURLConnection还是HttpClient?

- - 郭霖的专栏
转载请注明出处: http://blog.csdn.net/guolin_blog/article/details/12452307. 最近在研究Volley框架的源码,发现它在HTTP请求的使用上比较有意思,在Android 2.3及以上版本,使用的是HttpURLConnection,而在Android 2.2及以下版本,使用的是HttpClient.

HttpClient 与 Close_Wait

- - 互联网 - ITeye博客
服务器A需要通过HttpClient去连接另一个系统B提供的服务,运行一段时间后抛出以下异常:. 在服务器B上运行netstat命令,发现大量连接处于 CLOSE_WAIT 状态. 简单来说CLOSE_WAIT数目过大是由于被动关闭连接处理不当导致的. 我说一个场景,服务器A会去请求服务器B上面的apache获取文件资源,正常情况下,如果请求成功,那么在抓取完资源后服务器A会主动发出关闭连接的请求,这个时候就是主动关闭连接,连接状态我们可以看到是TIME_WAIT.

HttpURLConnection实现断点下载

- - Web前端 - ITeye博客
int code = con.getResponseCode();//只要断点下载,返回的已经不是200,206. System.err.println("服务器返回的长度:"+serverSize);. System.err.println("这次从哪开开始写:"+size);. 已有 0 人发表留言,猛击->> 这里<<-参与讨论.

Httpclient远程调用WebService示例(Eclipse+httpclient)

- - 企业架构 - ITeye博客
我们将Web Service发布在Tomcat或者其他应用服务器上后,有很多方法可以调用该Web Service,常用的有两种:.       1、通过浏览器HTTP调用,返回规范的XML文件内容.       2、通过客户端程序调用,返回结果可自定义格式.       接下来,我利用Eclipse作为开发工具,演示一个Httpclient调用WebService的简单示例.

HttpClient使用详解

- - CSDN博客推荐文章
HttpClient:是一个接口. 首先需要先创建一个DefaultHttpClient的实例. 先创建一个HttpGet对象,传入目标的网络地址,然后调用HttpClient的execute()方法即可:. 创建一个HttpPost对象,传入目标的网络地址:. 通过一个NameValuePair集合来存放待提交的参数,并将这个参数集合传入到一个UrlEncodedFormEntity中,然后调用HttpPost的setEntity()方法将构建好的UrlEncodedFormEntity传入:.

[原]Android HttpURLConnection Accept-Encoding: gzip 版本问题

- - bob007abc的专栏
Android 官方文档对 HttpURLConnection 的 Performance 的描述有一段:. 参见: http://developer.android.com/reference/java/net/HttpURLConnection.html. 就是说 使用HttpURLConnection发请求时,默认的request hearder里会加上 Accept-Encoding: gzip.

Apache HttpClient 4.3开发指南

- - CSDN博客推荐文章
《Apache HttpClient 4.3开发指南》. 作者:chszs,转载需注明. 博客主页: http://blog.csdn.net/chszs. Apache HttpClient 4系列已经发布很久了,但由于它与HttpClient 3.x版本完全不兼容,以至于业内采用此库的公司较少,在互联网上也少有相关的文档资料分享.