1. 程式人生 > >android socket程式設計例項

android socket程式設計例項

轉自:http://blog.csdn.net/wuchuanpingstone/article/details/6617276

Android客戶端通過socket與伺服器進行通訊可以分為以下幾步:

應用程式與伺服器通訊可以採用兩種模式:TCP可靠通訊 和UDP不可靠通訊。

(1)通過IP地址和埠例項化Socket,請求連線伺服器:

     socket = new Socket(HOST, PORT);   //host:為伺服器的IP地址  port:為伺服器的埠號

(2)獲取Socket流以進行讀寫,並把流包裝進BufferWriter或者PrintWriter:

   PrintWriter out = new PrintWriter( new BufferedWriter( new OutputStreamWriter(socket.getOutputStream())),true);  

   這裡涉及了三個類:socket.getOutputStream得到socket的輸出位元組流,OutputStreamWriter是位元組流向字元流轉換的橋樑,BufferWriter是字元流,然後再包裝進PrintWriter。

(3)對Socket進行讀寫

  if (socket.isConnected()) {
                    if (!socket.isOutputShutdown()) {
                        out.println(msg);
                    }
                }

(4)關閉開啟的流

      out.close();

 在寫程式碼的過程中一定要注意對socket  輸入流  輸出流的關閉

下面是一個簡單的例子:

main.xml

[html] view plain copy  print?
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:orientation="vertical"
  4.     android:layout_width="fill_parent"
  5.     android:layout_height="fill_parent">
  6.     <TextView
  7.         android:id="@+id/TextView"
  8.         android:singleLine="false"
  9.         android:layout_width="fill_parent"
  10.         android:layout_height="wrap_content"/>
  11.     <EditTextandroid:hint="content"
  12.         android:id="@+id/EditText01"
  13.         android:layout_width="fill_parent"
  14.         android:layout_height="wrap_content">
  15.     </EditText>
  16.     <Button
  17.         android:text="send"
  18.         android:id="@+id/Button02"
  19.         android:layout_width="fill_parent"
  20.         android:layout_height="wrap_content">
  21.     </Button>
  22. </LinearLayout>

下面是android客戶端的原始碼:

[java] view plain copy  print?
  1. package com.android.SocketDemo;  
  2. import java.io.BufferedReader;  
  3. import java.io.BufferedWriter;  
  4. import java.io.IOException;  
  5. import java.io.InputStreamReader;  
  6. import java.io.OutputStreamWriter;  
  7. import java.io.PrintWriter;  
  8. import java.net.Socket;  
  9. import android.app.Activity;  
  10. import android.app.AlertDialog;  
  11. import android.content.DialogInterface;  
  12. import android.os.Bundle;  
  13. import android.os.Handler;  
  14. import android.os.Message;  
  15. import android.view.View;  
  16. import android.widget.Button;  
  17. import android.widget.EditText;  
  18. import android.widget.TextView;  
  19. publicclass SocketDemo extends Activity implements Runnable {  
  20.     private TextView tv_msg = null;  
  21.     private EditText ed_msg = null;  
  22.     private Button btn_send = null;  
  23. //    private Button btn_login = null;
  24.     privatestaticfinal String HOST = "192.168.1.223";  
  25.     privatestaticfinalint PORT = 9999;  
  26.     private Socket socket = null;  
  27.     private BufferedReader in = null;  
  28.     private PrintWriter out = null;  
  29.     private String content = "";  
  30.     /** Called when the activity is first created. */
  31.     @Override
  32.     publicvoid onCreate(Bundle savedInstanceState) {  
  33.         super.onCreate(savedInstanceState);  
  34.         setContentView(R.layout.main);  
  35.         tv_msg = (TextView) findViewById(R.id.TextView);  
  36.         ed_msg = (EditText) findViewById(R.id.EditText01);  
  37. //        btn_login = (Button) findViewById(R.id.Button01);
  38.         btn_send = (Button) findViewById(R.id.Button02);  
  39.         try {  
  40.             socket = new Socket(HOST, PORT);  
  41.             in = new BufferedReader(new InputStreamReader(socket.getInputStream()));  
  42.             out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(  
  43.                     socket.getOutputStream())), true);  
  44.         } catch (IOException ex) {  
  45.             ex.printStackTrace();  
  46.             ShowDialog("login exception" + ex.getMessage());  
  47.         }  
  48.         btn_send.setOnClickListener(new Button.OnClickListener() {  
  49.             @Override
  50.             publicvoid onClick(View v) {  
  51.                 // TODO Auto-generated method stub
  52.                 String msg = ed_msg.getText().toString();  
  53.                 if (socket.isConnected()) {  
  54.                     if