alltolove 发表于 2017-11-1 22:22:21

android 9.2.1

新建项目,修改activity_main.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/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>

AndroidManifest.xml的manifest标签下添加<uses-permission android:name="android.permission.INTERNET"/>
修改mainactivity.javapackage com.example.xinwei.networktest;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.StringReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLDecoder;
import java.net.URLEncoder;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{

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

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

    private void sendRequestWithHttpURLConnection() {
      new Thread() {
            @Override
            public void run() {
                HttpURLConnection connection = null;
                BufferedReader reader=null;
                try {
                  URL url = new URL("http://www.fishC.com");
                  connection = (HttpURLConnection)url.openConnection();
                  connection.setRequestMethod("GET");
                  connection.setRequestProperty("Content-type", "application/x-java-serialized-object");
                  Log.d("MainActivity", ""+connection.getResponseCode());
                  connection.setConnectTimeout(8000);
                  connection.setReadTimeout(8000);
                  InputStream in = connection.getInputStream();
                  reader=new BufferedReader(new InputStreamReader(in));
                  StringBuilder response=new StringBuilder();
                  String line;
                  while ((line=reader.readLine())!=null){
                        response.append(line);
                  }
                  showResponse(response.toString());
                } catch (MalformedURLException e) {
                  e.printStackTrace();
                } catch (IOException e) {
                  e.printStackTrace();
                }finally {
                  if(reader!=null){
                        try {
                            reader.close();
                        } catch (IOException e) {
                            e.printStackTrace();
                        }
                  }
                  if (connection!=null){
                        connection.disconnect();
                  }
                }

            }

      }.start();
    }

    private void showResponse(final String response) {
      runOnUiThread(new Runnable() {
            @Override
            public void run() {
                responseText.setText(response);
            }
      });
    }
}

这里我把书上的baidu地址改成了鱼C,因为百度网老是重定向,头疼啊不知道怎么弄{:5_100:} 。
效果图:
页: [1]
查看完整版本: android 9.2.1