Android网络技术之HttpURLConnection

首先给出布局文件代码:

<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/send_request"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Send Request" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/response_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </ScrollView>

</LinearLayout>

这里的ScrollView是一个滚动控件,支持滚动查看当前屏幕展示不到的内容。

Button用于发送Http请求,TextView用于将服务器返回的内容显示出来

流程简述:

1、首先获取一个HttpURLConnection的实例(new一个URL对象,并传入目标网络地址,再调用openConnection即可)

URL url = new URL("http://www.baidu.com");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();

2、设置http请求所使用的方法,分别是GET和POST。GET表希望从服务器获取数据,而POST则表示希望提交数据给服务器。

connection.setRequestMethod("GET");

3、接下来就可以进行一些自由的定制了,比如设置连接超时、读取超时的毫秒数,以及服务器希望得到的一些消息头等。这部分内容根据自己的实际情况进行编写,
connection.setConnectTimeout(8000);
connection.setReadTimeout(8000);

4、之后再调用 getInputStream()方法就可以获取到服务器返回的输入流了, 剩下的任务就是对输入流进行读取
InputStream in = connection.getInputStream();
5、最后可以调用 disconnect()方法将这个 HTTP 连接关闭掉,
connection.disconnect();

Activity代码:

public class MainActivity extends Activity implements OnClickListener {
	public static final int SHOW_RESPONSE = 0;

	private Button sendRequest;

	private TextView responseText;

	@SuppressLint("HandlerLeak") private Handler handler = new Handler() {

		public void handleMessage(Message msg) {
			switch (msg.what) {
			case SHOW_RESPONSE:
				String response = (String) msg.obj;
				// 在这里进行UI操作,将结果显示到界面上
				responseText.setText(response);
			}
		}

	};
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        sendRequest = (Button) findViewById(R.id.send_request);
		responseText = (TextView) findViewById(R.id.response_text);
		sendRequest.setOnClickListener(this);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

	@Override
	public void onClick(View v) {
		// TODO Auto-generated method stub
		if (v.getId() == R.id.send_request) {
			sendRequestWithHttpURLConnection();
		}
	}

	private void sendRequestWithHttpURLConnection() {
		// TODO Auto-generated method stub
		// 开启线程来发起网络请求
				new Thread(new Runnable() {
					@Override
					public void run() {
						HttpURLConnection connection = null;
						try {
							URL url = new URL("http://www.baidu.com");
							connection = (HttpURLConnection) url.openConnection();
							connection.setRequestMethod("GET");
							connection.setConnectTimeout(8000);
							connection.setReadTimeout(8000);
							connection.setDoInput(true);
							connection.setDoOutput(true);
							InputStream in = connection.getInputStream();
							// 下面对获取到的输入流进行读取
							BufferedReader reader = new BufferedReader(
									new InputStreamReader(in));
							StringBuilder response = new StringBuilder();
							String line;
							while ((line = reader.readLine()) != null) {
								response.append(line);
							}
							Message message = new Message();
							message.what = SHOW_RESPONSE;
							// 将服务器返回的结果存放到Message中
							message.obj = response.toString();
							handler.sendMessage(message);
						} catch (Exception e) {
							e.printStackTrace();
						} finally {
							if (connection != null) {
								connection.disconnect();
							}
						}
					}
				}).start();
	}
}


效果展示:


注:

 Message.what用来存储用户自定义的消息代码,这样接受者可以了解这个消息的信息。每个handler各自包含自己的消息代码,所以不用担心自定义的消息跟其他handlers有冲突。


以上是想服务器获取数据的代码,若是发送代码呢?

只需要将 HTTP 请求的方法改成 POST,并在获取输入流之前把要提交的数据写出即可。注意每条数据都要以键
值对的形式存在,数据与数据之间用&符号隔开,比如说我们想要向服务器提交用户名和密码,就可以这样写:
connection.setRequestMethod("POST");
DataOutputStream out = new DataOutputStream(connection.getOutputStream());
out.writeBytes("username=admin&password=123456");

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值