溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

HttpURLConnection和okHttp如何獲取網(wǎng)絡(luò)數(shù)據(jù)

發(fā)布時(shí)間:2021-05-22 13:32:42 來(lái)源:億速云 閱讀:123 作者:小新 欄目:移動(dòng)開(kāi)發(fā)

這篇文章給大家分享的是有關(guān)HttpURLConnection和okHttp如何獲取網(wǎng)絡(luò)數(shù)據(jù)的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

代碼示例

xml如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/activity_net"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="com.example.waterlamp.NetActivity">
 <Button
  android:id="@+id/okhttp"
  android:text="okhttp請(qǐng)求"
  android:layout_width="150dp"
  android:layout_height="37dp"
  android:layout_alignBottom="@+id/http"
  android:layout_alignParentEnd="true"
  android:layout_alignParentTop="true" />

 <Button
  android:id="@+id/http"
  android:text="HTTP請(qǐng)求"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentTop="true"
  android:layout_alignParentStart="true" />

 <ScrollView
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_alignParentStart="true"
 android:layout_below="@+id/okhttp"
 android:layout_alignParentBottom="true"
 android:layout_alignParentEnd="true" >
  <TextView
   android:id="@+id/stringData"
   android:layout_width="match_parent"
   android:layout_height="match_parent" />
 </ScrollView>
</RelativeLayout>

activity如下:

public class NetActivity extends AppCompatActivity implements View.OnClickListener{
private Button http,okhttp;
 private TextView stringData;
 private String web="https://www.baidu.com";
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_net);
  http= (Button) findViewById(R.id.http);
  okhttp= (Button) findViewById(R.id.okhttp);
  stringData= (TextView) findViewById(R.id.stringData);
  http.setOnClickListener(this);
  okhttp.setOnClickListener(this);
 }

 @Override
 public void onClick(View v) {
  switch (v.getId()){
   case R.id.http:
    sendRequestWithHttpURLConnection();
   break;
   case R.id.okhttp:
    sendRequestWithokHttp();
   break;
  }
 }
 private void sendRequestWithHttpURLConnection(){
  new Thread(new Runnable() {
   @Override
   public void run() {
    HttpURLConnection connection=null;
    BufferedReader reader=null;
    try {
     URL url=new URL(web);
     connection= (HttpURLConnection) url.openConnection();
     connection.setRequestMethod("GET");
     connection.setConnectTimeout(5000);
     connection.setReadTimeout(5000);
     InputStream in=connection.getInputStream();
     reader=new BufferedReader(new InputStreamReader(in));
     StringBuffer response=new StringBuffer();
     String line;
     while ((line=reader.readLine())!=null){
      response.append(line);
     }
     showRespond(response.toString());
    } catch (MalformedURLException e) {
     e.printStackTrace();
    } catch (IOException e) {
     e.printStackTrace();
    }finally {
     if (reader!=null){
      try {
       reader.close();
      } catch (IOException e) {
       e.printStackTrace();
      }
     }
    }
   }
  }).start();
 }

 private void showRespond(final String response) {
  runOnUiThread(new Runnable() {
   @Override
   public void run() {
    stringData.setText(response);
   }
  });
 }
 private void sendRequestWithokHttp(){
  new Thread(new Runnable() {
   @Override
   public void run() {

    try {
     OkHttpClient client=new OkHttpClient();
     Request request=new Request.Builder()
       .url(web).build();
     Response response=client.newCall(request).execute();
     String str=response.body().string();
     showRespond(str);
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
  }).start();
 }
}

注意:需要在加權(quán)限

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

2.okhttp3需要在gradle添加依賴

dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
 androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  exclude group: 'com.android.support', module: 'support-annotations'
 })
 compile 'com.android.support:appcompat-v7:24.2.1'
 compile 'com.android.support:design:24.2.1'
 compile 'com.squareup.okhttp3:okhttp:3.4.1'//依賴
 testCompile 'junit:junit:4.12'
}

感謝各位的閱讀!關(guān)于“HttpURLConnection和okHttp如何獲取網(wǎng)絡(luò)數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI