套接字编程(Socket)

作者:追风剑情 发布于:2015-10-16 21:49 分类:Android

聊天程序客户端示例

一、在AndroidManifest.xml中配置权限

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

二、创建负责读取消息的线程类

  1. package com.example.androidtest;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6. import java.net.Socket;
  7.  
  8. import android.util.Log;
  9.  
  10. public class CommsThread extends Thread {
  11.  
  12. private final Socket socket;
  13. private final InputStream inputStream;
  14. private final OutputStream outputStream;
  15. public CommsThread(Socket sock)
  16. {
  17. socket = sock;
  18. InputStream tmpIn = null;
  19. OutputStream tmpOut = null;
  20. try {
  21. tmpIn = socket.getInputStream();
  22. tmpOut = socket.getOutputStream();
  23. } catch (IOException e) {
  24. Log.d("AndroidTest", e.getLocalizedMessage());
  25. }
  26. inputStream = tmpIn;
  27. outputStream = tmpOut;
  28. }
  29. public void run()
  30. {
  31. byte[] buffer = new byte[1024];
  32. int bytes;
  33. while (true) {
  34. try {
  35. bytes = inputStream.read(buffer);
  36. } catch (IOException e) {
  37. break;
  38. }
  39. }
  40. }
  41. public void write(byte[] bytes)
  42. {
  43. try {
  44. outputStream.write(bytes);
  45. } catch (IOException e) {}
  46. }
  47. public void canncel()
  48. {
  49. try {
  50. socket.close();
  51. } catch (IOException e) {}
  52. }
  53. }

三、创建活动

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <EditText
  9. android:id="@+id/txtMessage"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"/>
  12. <Button
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:text="Send Message"
  16. android:onClick="onClickSend"/>
  17. <TextView
  18. android:id="@+id/txtMessagesReceived"
  19. android:layout_width="fill_parent"
  20. android:layout_height="200dp"
  21. android:scrollbars="vertical" />
  22.  
  23. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import java.io.IOException;
  4. import java.net.InetAddress;
  5. import java.net.Socket;
  6. import java.net.UnknownHostException;
  7.  
  8. import android.app.Activity;
  9. import android.os.AsyncTask;
  10. import android.os.Bundle;
  11. import android.os.Handler;
  12. import android.os.Message;
  13. import android.util.Log;
  14. import android.view.View;
  15. import android.widget.EditText;
  16. import android.widget.TextView;
  17.  
  18. public class SocketsActivity extends Activity {
  19.  
  20. static final String NICKNAME = "Wei-Meng";
  21. InetAddress serverAddress;
  22. Socket socket;
  23. static TextView txtMessagesReceived;
  24. EditText txtMessage;
  25. CommsThread commsThread;
  26. static Handler UIupdater = new Handler(){
  27. @Override
  28. public void handleMessage(Message msg)
  29. {
  30. int numOfBytesReceived = msg.arg1;
  31. byte[] buffer = (byte[]) msg.obj;
  32. String strReceived = new String(buffer);
  33. strReceived = strReceived.substring(0, numOfBytesReceived);
  34. txtMessagesReceived.setText(txtMessagesReceived.getText().toString() + strReceived);
  35. }
  36. };
  37. private class CreateCommThreadTask extends AsyncTask<Void, Integer, Void>
  38. {
  39. @Override
  40. protected Void doInBackground(Void... params)
  41. {
  42. try {
  43. serverAddress = InetAddress.getByName("192.168.1.142");
  44. socket = new Socket(serverAddress, 500);
  45. commsThread = new CommsThread(socket);
  46. commsThread.start();
  47. sendToServer(NICKNAME);
  48. } catch (UnknownHostException e) {
  49. Log.d("AndroidTest", e.getLocalizedMessage());
  50. } catch (IOException e) {
  51. Log.d("AndroidTest", e.getLocalizedMessage());
  52. }
  53. return null;
  54. }
  55. }
  56. private class WriteToServerTask extends AsyncTask<byte[], Void, Void>
  57. {
  58. @Override
  59. protected Void doInBackground(byte[]... data)
  60. {
  61. commsThread.write(data[0]);
  62. return null;
  63. }
  64. }
  65. private class CloseSocketTask extends AsyncTask<Void, Void, Void>
  66. {
  67. @Override
  68. protected Void doInBackground(Void... params)
  69. {
  70. try {
  71. socket.close();
  72. } catch (IOException e) {
  73. Log.d("AndroidTest", e.getLocalizedMessage());
  74. }
  75. return null;
  76. }
  77. }
  78. @Override
  79. protected void onCreate(Bundle savedInstanceState) {
  80. super.onCreate(savedInstanceState);
  81. setContentView(R.layout.activity_sockets);
  82. txtMessage = (EditText) findViewById(R.id.txtMessage);
  83. txtMessagesReceived = (TextView) findViewById(R.id.txtMessagesReceived);
  84. }
  85. public void onClickSend(View view) {
  86. sendToServer(txtMessage.getText().toString());
  87. }
  88. private void sendToServer(String message)
  89. {
  90. byte[] theByteArray = message.getBytes();
  91. new WriteToServerTask().execute(theByteArray);
  92. }
  93. @Override
  94. public void onResume()
  95. {
  96. super.onResume();
  97. new CreateCommThreadTask().execute();
  98. }
  99. @Override
  100. public void onPause()
  101. {
  102. super.onPause();
  103. new CloseSocketTask().execute();
  104. }
  105. }

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号