zoukankan      html  css  js  c++  java
  • HttpURLConnection

    package com.pingyijinren.test;
    
    import android.content.Intent;
    import android.os.Handler;
    import android.os.Message;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.Button;
    import android.widget.TextView;
    
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.HttpURLConnection;
    import java.net.URL;
    
    public class MainActivity extends AppCompatActivity{
        private Button button;
        private TextView textView;
        private static final int SHOW_RESPONSE=0;
        private Handler handler=new Handler(){
            public void handleMessage(Message message){
                switch(message.what){
                    case SHOW_RESPONSE:
                        String response=(String)message.obj;
                        textView.setText(response);
                }
            }
        };
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            button=(Button)findViewById(R.id.button);
            textView=(TextView)findViewById(R.id.textView);
    
            button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    sendRequestWithHttpURLConnection();
                }
            });
        }
    
        private void sendRequestWithHttpURLConnection(){
            new Thread(new Runnable(){
                @Override
                public void run(){
                    HttpURLConnection httpURLConnection=null;
    
                    try{
                        URL url=new URL("https://www.baidu.com");
                        httpURLConnection=(HttpURLConnection)url.openConnection();
                        httpURLConnection.setRequestMethod("GET");
                        httpURLConnection.setConnectTimeout(8000);
                        httpURLConnection.setReadTimeout(8000);
                        InputStream in=httpURLConnection.getInputStream();
                        BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(in));
                        StringBuilder response=new StringBuilder();
                        String line;
                        while((line= bufferedReader.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(httpURLConnection!=null){
                            httpURLConnection.disconnect();
                        }
                    }
                }
            }).start();
        }
    }
  • 相关阅读:
    结构体、共用体
    strlen函数,strcat函数,strcpy函数,strncpy函数,strcmp函数
    memmove函数
    Spring Boot——2分钟构建spring web mvc REST风格HelloWorld
    maven3常用命令、java项目搭建、web项目搭建详细图解
    C++中的const关键字
    Pyp 替代sed,awk的文本处理工具
    Python 中的进程、线程、协程、同步、异步、回调
    Python-aiohttp百万并发
    学习Python的三种境界
  • 原文地址:https://www.cnblogs.com/zqxLonely/p/5507694.html
Copyright © 2011-2022 走看看