使用HTTP协议访问网络

有两种方法分别是 HttpURLConnection 和HttpClient

使用HttpURLConnection

xml界面代码:

<span style="font-size:14px;"><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.networktest.MainActivity"
    android:orientation="vertical"
    >

    <Button
        android:id="@+id/send_request"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="Send Request"
        />

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
		<TextView
		    android:id="@+id/respose_text"
		    android:layout_width="fill_parent"
		    android:layout_height="wrap_content"
		    />
    </ScrollView>

</LinearLayout></span>

MainActivity中的代码:

<span style="font-size:14px;">package com.example.networktest;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity implements OnClickListener {

	private TextView tv_response;
	protected static final int SHOW_RESPONSE = 0;
	private Handler handler  = new Handler(){
		@Override
		public void handleMessage(Message msg) {
			switch (msg.what) {
			case SHOW_RESPONSE:
				String response = (String) msg.obj;
				tv_response.setText(response);
				break;

			default:
				break;
			}

		}

	};

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

		tv_response = (TextView) findViewById(R.id.respose_text);
		Button btn_send = (Button) findViewById(R.id.send_request);
		btn_send.setOnClickListener(this);

	}

	@Override
	public void onClick(View v) {
		if(v.getId()==R.id.send_request){
			sendRequestWithHttpURLConnection();
		}
	}

	private void sendRequestWithHttpURLConnection() {
		//开启线程发起网络请求
		new Thread(new Runnable() {

			@Override
			public void run() {
				HttpURLConnection conn = null;
				try{
					URL url = new URL("http://192.168.1.101/AndroidLogin/servlet/LoginServlet?userName=dumas&passWord=1213");
					conn = (HttpURLConnection) url.openConnection();

					conn.setRequestMethod("GET");
					conn.setReadTimeout(8000);
					conn.setConnectTimeout(8000);

					//对获取到的输入流进行读取
					InputStream is = conn.getInputStream();
					BufferedReader reader = new BufferedReader(new InputStreamReader(is));

					StringBuilder response = new StringBuilder();
					String line;
					while((line= reader.readLine())!=null){
						response.append(line);
					}

					Message message = new Message();
					message.what = SHOW_RESPONSE;
					message.obj = response.toString();

				    handler.sendMessage(message);

				}catch(Exception e){
					e.printStackTrace();
				}finally{
					if(conn!=null){
						conn.disconnect();
					}
				}

			}
		}).start();
	}
}</span>

注意还要添加权限:

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

以上是使用GET提交的,假如使用POST则如下:

<span style="font-size:14px;">private void sendRequestWithHttpURLConnection() {
		//开启线程发起网络请求
		new Thread(new Runnable() {

			@Override
			public void run() {
				HttpURLConnection conn = null;
				try{
					URL url = new URL("http://192.168.1.101/AndroidLogin/servlet/LoginServlet");
					conn = (HttpURLConnection) url.openConnection();

					conn.setRequestMethod("POST");
					conn.setReadTimeout(8000);
					conn.setConnectTimeout(8000);

					//---向服务器提交姓名和密码
					DataOutputStream daos = new DataOutputStream(conn.getOutputStream());
					daos.writeBytes("userName=duams&passWord=123");

					//对获取到的输入流进行读取
					InputStream is = conn.getInputStream();
					BufferedReader reader = new BufferedReader(new InputStreamReader(is));

					StringBuilder response = new StringBuilder();
					String line;
					while((line= reader.readLine())!=null){
						response.append(line);
					}
					</span>

使用HttpClient

是用Get方式提交数据

<span style="font-size:14px;">public void run() {
				HttpURLConnection conn = null;
				try{

					//使用Get方式提交数据
					HttpClient httpClient = new DefaultHttpClient();
					HttpGet httpGet = new HttpGet("http://192.168.1.101/AndroidLogin/servlet/LoginServlet?userName=dumas&passWord=123"<span style="white-space: pre; ">					</span>);
					HttpResponse httpReponse = httpClient.execute(httpGet);

					if(httpReponse.getStatusLine().getStatusCode()==200){
						HttpEntity entity = httpReponse.getEntity();
						response = EntityUtils.toString(entity,"utf-8");
					}

					Message message = new Message();
					message.what = SHOW_RESPONSE;
					message.obj = response.toString();

				    handler.sendMessage(message);

				}catch(Exception e){
					e.printStackTrace();
				}finally{
					if(conn!=null){
						conn.disconnect();
					}
				}

			}
		}).start();
	}</span>

使用POST方式提交

	private void sendRequestWithHttpURLConnection() {
		//开启线程发起网络请求
		new Thread(new Runnable() {

			private String response;

			@Override
			public void run() {
				HttpURLConnection conn = null;
				try{

					//使用Get方式提交数据
					HttpClient httpClient = new DefaultHttpClient();
					HttpPost httpPost = new HttpPost("http://192.168.1.101/AndroidLogin/servlet/LoginServlet");

					List<NameValuePair> params = new ArrayList<NameValuePair>();
					params.add(new BasicNameValuePair("userName", "dumas"));
					params.add(new BasicNameValuePair("passWord", "123"));
					UrlEncodedFormEntity entity = new UrlEncodedFormEntity(params,"utf-8");

					httpPost.setEntity(entity);

					HttpResponse httpResponse = httpClient.execute(httpPost);

					if(httpResponse.getStatusLine().getStatusCode()==200){
						HttpEntity httpEntity = httpResponse.getEntity();
						response = EntityUtils.toString(httpEntity, "utf-8");
					}

					Message message = new Message();
					message.what = SHOW_RESPONSE;
					message.obj = response.toString();

				    handler.sendMessage(message);

				}catch(Exception e){
					e.printStackTrace();
				}finally{
					if(conn!=null){
						conn.disconnect();
					}
				}

			}
		}).start();
	}
时间: 2024-10-13 15:58:34

使用HTTP协议访问网络的相关文章

Android使用Http协议访问网络

Http协议工作原理大致可以理解为:客户端向服务器发出一条HTTP请求,服务器收到请求后返回一些数据给客户端,客户端对收到数据解析. 在Android6.0以前,Android上发送Http请求主要有两种方式:HttpURLConnection和HttpClient.其中HttpClient存在过多的API且难扩展,于是在Android6.0系统中,HttpClient被完全移除,如需使用,需导入相应文件.这里介绍最近我最近学习的HttpURLConnection的基本使用方法,然后接下来介绍一

Android使用Http协议访问网络——HttpConnection

套路篇 使用HttpConnection访问网络一般有如下的套路: 1.获取到HttpConnection的实例,new出一个URL对象,并传入目标的网址,然后调用一下openConnection()方法. 1 HttpURLConnection connection=null; 2 URL url=new URL("http://www.baidu.com"); 3 connection=(HttpURLConnection)url.openConnection(); 2.得到了Ht

Android中使用http协议访问网络

HTTP协议的工作原理:客户端向服务器端发送http请求,服务器端收到请求后返回一下数据给客户端,客户端接受消息并进行解析. 在Android中发送http请求的方式有两种,第一种是通过HttpURLConnection的方式,第二种是通过HttpClient的方式. 通过HttpURLConnection的方式发送http请求 通常分为以下5个步骤: 1.获取HttpURLConnection实例对象.先new一个URL实例,然后调用该对象的openConnection()方法. 2.设置ht

android学习二十(使用HTTP协议访问网络)

使用HttpURLConnection 在Android上发送HTTP请求的方式一般有两种,HttpURLConnection和HttpClient,现在先学习下 HttpURLConnection的用法. 首先需要获取到HttpURLConnection的实例,一般只需new 出一个URL对象,并传入目标网络的地址,然后 调用一下openConnection()方法即可,如下所示: URL URL=new URL("http://www.baidu.com"); HttpURLCon

Android使用HTTP协议访问网络——HttpClient

套路篇 1.HttpClient是一个接口,因此无法创建它的实例,通常情况下都会创建一个DefaultHttpClient的实例 HttpClient httpClient=new DefaultHttpClient(); 2.如果想要发起一条GET请求,就创建一个HttpGet对象,并传入目标网络的对象,然后调用HtttpClient中的excute()方法: HttpGet httpGet=new HttpGet("http://www.baidu.com"); HttpRespo

安卓使用 HTTP 协议访问网络

10.2.1 使用 HttpURLConnection 1,首先需要获取到 HttpURLConnection 的实例,一般只需 new 出一个 URL 对象,并传入目标的网络地址,然后调用一下 openConnection()方法. 2,我们可以设置一下 HTTP 请求所使用的方法.常用的方法主要有两个, GET 和 POST. GET 表示希望从服务器那里获取数据,而 POST 则表示希望提交数据给服务器. 3,接下来就可以进行一些自由的定制了,比如设置连接超时.读取超时的毫秒数,以及服务器

ii 第七单元 访问网络共享文件系统

挂载网络文件系统 网络文件系统是由网络附加存储服务器通过网络向多个主机提供的一种文件系统 , 而不是由块设备 ( 例如硬盘驱动器 ) 提供的.客户端通过特殊的文件系统协议和格式访问远程存储 Linux 中有两种主要协议可用访问网络文件系统 : NFS 和CIFS . 访问网络共享的三个基本步骤– 1. 识别要访问的远程共享– 2. 确定挂载点 ( 应该将共享挂载到的位置 ), 并创建挂载点的空目录– 3. 通过相应的名利或配置更改挂载网络文件系统 1.cifsCIFS( Comon Intern

访问网络文件共享服务

第七单元 一 挂载网络文件系统 网络文件系统是由网络附加存储服务器通过网络向多个主机提供的一种文件系统 , 而不是由块设备 ( 例如硬盘驱动器 ) 提供的.客户端通过特殊的文件系统协议和格式访问远程存储 Linux 中有两种主要协议可用访问网络文件系统 : NFS 和CIFS 1 )CIFS: 通用网络文件系统 CIFS 是针对 Microsoft Windows 操作系统的本地网络文件系统Linux 系统可以挂载和访问 CIFS 文件共享 , 如同常见的网络文件系统一样. samba-clie

使用python访问网络上的数据

这两天看完了Course上面的: 使用 Python 访问网络数据 https://www.coursera.org/learn/python-network-data/ 写了一些作业,完成了一些作业.做些学习笔记以做备忘. 1.正则表达式 --- 虽然后面的课程没有怎么用到这个知识点,但是这个技能还是蛮好的. 附上课程中列出来的主要正则表达式的用法: Python Regular Expression Quick Guide ^ Matches the beginning of a line