Android 三大網路通訊方式詳解
Android平臺有三種網路介面可以使用,他們分別是:java.net.*(標準Java介面)、Org.apache介面和Android.net.*(Android網路介面)。下面分別介紹這些介面的功能和作用。
1.標準Java介面
java.net.*提供與聯網有關的類,包括流、資料包套接字(socket)、Internet協議、常見Http處理等。比如:建立URL,以及URLConnection/HttpURLConnection物件、設定連結引數、連結到伺服器、向伺服器寫資料、從伺服器讀取資料等通訊。這些在Java網路程式設計中均有涉及,我們看一個簡單的socket程式設計,實現伺服器回發客戶端資訊。
下面用個例子來說明:
A、客戶端:
新建Android專案工程:SocketForAndroid(這個隨意起名字了吧,我是以這個建立的!)
下面是main_activity.xml的程式碼:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <EditText android:id="@+id/message" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/hint" /> <Button android:id="@+id/send" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/send" /> </LinearLayout>
MainActivity.java的程式碼入下:
package com.yaowen.socketforandroid; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.EditText; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.net.Socket; public class MainActivity extends AppCompatActivity { private EditText message; private Button send; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //初始化兩個UI控制元件 message = (EditText) findViewById(R.id.message); send = (Button) findViewById(R.id.send); //設定傳送按鈕的點選事件響應 send.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Socket socket = null; //獲取message輸入框裡的輸入的內容 String msg = message.getText().toString() + "/r/n"; try { //這裡必須是192.168.3.200,不可以是localhost或者127.0.0.1 socket = new Socket("192.168.3.200", 18888); PrintWriter out = new PrintWriter( new BufferedWriter( new OutputStreamWriter( socket.getOutputStream() ) ), true); //傳送訊息 out.println(msg); //接收資料 BufferedReader in = new BufferedReader( new InputStreamReader( socket.getInputStream() ) ); //讀取接收的資料 String msg_in = in.readLine(); if (null != msg_in) { message.setText(msg_in); System.out.println(msg_in); } else { message.setText("接收的資料有誤!"); } //關閉各種流 out.close(); in.close(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (null != socket) { //socket不為空時,最後記得要把socket關閉 socket.close(); } } catch (IOException e) { e.printStackTrace(); } } } }); } }
最後別忘記新增訪問網路許可權:
<uses-permission android:name="android.permission.INTERNET" />
B、服務端:
package service; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.net.ServerSocket; import java.net.Socket; public class ServerAndroid implements Runnable { @Override public void run() { Socket socket = null; try { ServerSocket server = new ServerSocket(18888); // 迴圈監聽客戶端連結請求 while (true) { System.out.println("start..."); // 接收請求 socket = server.accept(); System.out.println("accept..."); // 接收客戶端訊息 BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream())); String message = in.readLine(); System.out.println(message); // 傳送訊息,向客戶端 PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())), true); out.println("Server:" + message); // 關閉流 in.close(); out.close(); } } catch (IOException e) { e.printStackTrace(); } finally { if (null != socket) { try { socket.close(); } catch (IOException e) { e.printStackTrace(); } } } } // 啟動伺服器 public static void main(String[] args) { Thread server = new Thread(new ServerAndroid()); server.start(); } }
C、啟動伺服器,控制檯會列印出“start…”字串!
D、執行Android專案檔案,如下圖:
在輸入框裡輸入如下字串,點傳送按鈕:
伺服器收到客戶端發來的訊息並列印到控制檯:
2、Apache介面
對於大部分應用程式而言JDK本身提供的網路功能已遠遠不夠,這時就需要Android提供的Apache HttpClient了。它是一個開源專案,功能更加完善,為客戶端的Http程式設計提供高效、最新、功能豐富的工具包支援。
下面我們以一個簡單例子來看看如何使用HttpClient在Android客戶端訪問Web。
首先,要在你的機器上搭建一個web應用test,有兩個很簡單的PHP檔案:hello_get.php和hello_post.php!
內容如下:
hello_get.php的程式碼如下:
<html> <body> Welcome <?php echo $_GET["name"]; ?><br> You connected this page on : <?php echo $_GET["get"]; ?> </body> </html>
hello_post.php的程式碼如下:
<html> <body> Welcome <?php echo $_POST["name"]; ?><br> You connected this page on : <?php echo $_POST["post"]; ?> </body> </html>
在原來的Android專案裡新建一個Apache活動類:Apache.java,程式碼如下:
package com.yaowen.socketforandroid; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.TextView; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicNameValuePair; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.List; /** * Created by YAOWEN on 2015/11/10. */ public class ApacheActivity extends AppCompatActivity implements View.OnClickListener { private TextView textView; private Button get1, post1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.apache); textView = (TextView) findViewById(R.id.textView); get1 = (Button) findViewById(R.id.get); post1 = (Button) findViewById(R.id.post); get1.setOnClickListener(this); post1.setOnClickListener(this); } @Override public void onClick(View v) { if (v.getId() == R.id.get) { //注意:此處ip不能用127.0.0.1或localhost,Android模擬器已將它自己作為了localhost String url = "http://192.168.3.200/test/hello_get.php?name=yaowen&get=GET"; textView.setText(get(url)); } if (v.getId() == R.id.post) { String url="http://192.168.3.200/test/hello_post.php"; textView.setText(post(url)); } } /** * 以post方式傳送請求,訪問web * * @param url web地址 * @return 響應資料 */ private String post(String url) { BufferedReader reader = null; StringBuffer sb = null; String result = ""; HttpClient client = new DefaultHttpClient(); HttpPost requset = new HttpPost(url); //儲存要傳遞的引數 List<NameValuePair> params = new ArrayList<NameValuePair>(); //新增引數 params.add(new BasicNameValuePair("name", "yaowen")); params.add(new BasicNameValuePair("post","POST")); try { HttpEntity entity = new UrlEncodedFormEntity(params, "utf-8"); requset.setEntity(entity); HttpResponse response = client.execute(requset); if (response.getStatusLine().getStatusCode() == 200) { System.out.println("post success"); reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent())); sb = new StringBuffer(); String line = ""; String NL = System.getProperty("line.separator"); while ((line = reader.readLine()) != null) { sb.append(line); } } } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (ClientProtocolException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (null != reader) { try { reader.close(); } catch (IOException e) { e.printStackTrace(); } } if (null != sb) { result = sb.toString(); } } return result; } /** * 以get方式傳送請求,訪問web * * @param url web地址 * @return 響應資料 */ private static String get(String url) { BufferedReader bufferedReader = null; StringBuffer sb = null; String result = ""; HttpClient client = new DefaultHttpClient(); HttpGet request = new HttpGet(url); //傳送請求,得到響應 try { HttpResponse response = client.execute(request); //請求成功 if (response.getStatusLine().getStatusCode() == 200) { bufferedReader = new BufferedReader( new InputStreamReader( response.getEntity() .getContent() ) ); sb = new StringBuffer(); String line = ""; String NL = System.getProperty("line.separator"); while ((line = bufferedReader.readLine()) != null) { sb.append(line); } } } catch (IOException e) { e.printStackTrace(); } finally { if (null != bufferedReader) { try { bufferedReader.close(); //bufferedReader=null; } catch (IOException e) { e.printStackTrace(); } } if (null != sb) { result = sb.toString(); } } return result; } }
新建一個apache.XML檔案,如下:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <TextView android:id="@+id/textView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:text="通過按鈕選擇不同方式訪問網頁" /> <Button android:id="@+id/get" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="get" /> <Button android:id="@+id/post" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="post" /> </LinearLayout>
結果執行如下:
3.android.net程式設計
常常使用此包下的類進行Android特有的網路程式設計,如:訪問WiFi,訪問Android聯網資訊,郵件等功能。
這裡就不詳細做例子了,因為這個接觸比較多~~~。
相關文章
- Docker多主機網路通訊詳解Docker
- Vue 元件通訊方式全面詳解Vue元件
- 網路通訊協議-ICMP協議詳解!協議
- 網路通訊協議-TCP協議詳解!協議TCP
- 網路通訊協議-HTTP協議詳解!協議HTTP
- 網路通訊協議-SMTP協議詳解!協議
- Android程式間通訊詳解Android
- Android中的幾種網路請求方式詳解Android
- 【乾貨】Vue3 元件通訊方式詳解Vue元件
- Android 程式間通訊 AIDL詳解AndroidAI
- android Fragments詳解五:與activity通訊AndroidFragment
- 智慧路燈解通訊方式:有線&無線
- 程式間的五種通訊方式介紹-詳解
- 網路通訊
- Android 整合 Flutter 及通訊互動詳解AndroidFlutter
- Android AIDL SERVICE 雙向通訊 詳解AndroidAI
- Android 網路請求詳解Android
- udp網路通訊UDP
- USB共享網路:android手機通過USB與Ubuntu進行socket網路通訊AndroidUbuntu
- 網路通訊2:TCP通訊實現TCP
- 網路通訊3:TCP互動通訊TCP
- 網路通訊2:TCP簡單通訊TCP
- 深入分析網路通訊,Wireshark助你解決網路問題!
- dubbo網路通訊(四)
- 網路通訊1:UDPUDP
- 19作 網路通訊
- 網路通訊協議協議
- 網路通訊基礎
- Android與物聯網裝置通訊-網路模型分層Android模型
- xmpp即時通訊詳解
- 程序通訊方式
- docker系列(五):網路通訊Docker
- 網路通訊程式設計程式設計
- BZOJ3651 : 網路通訊
- Java網路通訊套接字Java
- 讓網際網路更快,Server Push 特性及開啟方式詳解Server
- Android 網路通訊API的選擇和實現例項AndroidAPI
- 常用的壓縮解壓縮以及網路通訊命令