当前位置:   article > 正文

利用socket进行消息推送_socket推送怎么做

socket推送怎么做

对于利用socket通信进行消息推送,我研究了两三天吧,当然是在前几天研究消息推送机制以及第三方和轮询的基础上进行的,以下是我的一些感想吧,有不正确或者不完善的地方希望大家提出来一起研究吧。

1.首先,了解socket的连接过程:

1)服务器监听;2)客户端请求;3)连接确认(具体详情可以见百度百科,我在这也就不多说了)。

2.socket通信机制:

服务器端
  一、创建服务器套接字(CREATE)。
  二、服务器套接字进行信息绑定(BIND),并开始监听连接(LISTEN)。
  三、接受来自客户端的连接请求(ACCEPT),并创建接收进程。
  四、开始数据传输(SEND、RECEIVE)。
  五、关闭套接字(CLOSESOCKET)。
客户机端
  一、创建客户机套接字(CREATE)。
  二、与远程服务器进行连接(CONNECT),如被接受则创建接收进程。
  三、开始数据传输(SEND、RECEIVE)。
  四、关闭套接字(CLOSESOCKET)。

具体在java中的实现是:

服务器端:

1)创建ServerSocket,需要使用端口号进行标识,以便客户端进行连接。

如:ServerSocket serverSocket = new ServerSocket(9999);

2)创建Socket获取连接

如: Socket socket = serverSocket.accept();

3)便可以进行通信内容传输了。

客户端:

1)创建Socket,进行与服务器连接,需要填写服务器ip,以及服务器的端口号

如:Socket socket = new Socket("127.0.0.1", 9999);

2)进行通信内容的传输。

以上只是一个简单的socket通信案例,想要了解的可以进入该链接下载:http://download.csdn.net/detail/xia09222826/8244423
3.利用socket通信进行服务器端到客户端的消息推送的思路:

客户端登录后发送一个消息给服务器端,用一个标识作为用户客户端程序关闭后服务器端是否推送消息给客户端,如果有则进行消息推送,如果没有则不进行消息推送,而当程序运行时就是一般的socket通信,也就是服务器端写一条消息推送给客户端,客户端便可以接收,并在消息栏上显示,点击消息栏进行相应的界面即可。

服务器就不多说了,方法是差不多的。

客户端:

需要使用Service来进行监听:

  1. public class PushService extends Service {
  2. private PushClient mClient;
  3. private Handler mHandler;
  4. @Override
  5. public IBinder onBind(Intent intent) {
  6. return null;
  7. }
  8. @Override
  9. public void onCreate() {
  10. super.onCreate();
  11. initHandler();
  12. }
  13. @Override
  14. public int onStartCommand(Intent intent, int flags, int startId) {
  15. mClient = new PushClient(new InetSocketAddress("192.168.4.101", 9999),
  16. mHandler);
  17. mClient.start();
  18. return super.onStartCommand(intent, flags, startId);
  19. }
  20. @Override
  21. public void onDestroy() {
  22. if (mClient != null) {
  23. mClient.disConnect();
  24. }
  25. super.onDestroy();
  26. }
  27. /**
  28. * 初始化Handler
  29. */
  30. private void initHandler() {
  31. mHandler = new Handler(new Callback() {
  32. @Override
  33. public boolean handleMessage(Message msg) {
  34. switch (msg.what) {
  35. case Const.PUSH_MSG:
  36. String pushMsg = msg.obj.toString();
  37. showNotification(pushMsg);
  38. break;
  39. default:
  40. break;
  41. }
  42. return false;
  43. }
  44. });
  45. }
  46. /**
  47. *
  48. * 在状态栏显示通知
  49. */
  50. @SuppressWarnings("deprecation")
  51. private void showNotification(String msg) {
  52. // 创建一个NotificationManager的引用
  53. NotificationManager notificationManager = (NotificationManager) getSystemService(android.content.Context.NOTIFICATION_SERVICE);
  54. // 定义Notification的各种属性
  55. Notification notification = new Notification(R.drawable.ic_launcher,
  56. msg, System.currentTimeMillis());
  57. // FLAG_AUTO_CANCEL 该通知能被状态栏的清除按钮给清除掉
  58. // FLAG_NO_CLEAR 该通知不能被状态栏的清除按钮给清除掉
  59. // FLAG_ONGOING_EVENT 通知放置在正在运行
  60. // FLAG_INSISTENT 是否一直进行,比如音乐一直播放,知道用户响应
  61. notification.flags |= Notification.FLAG_AUTO_CANCEL; // 表明在点击了通知栏中的"清除通知"后,此通知不清除,经常与FLAG_ONGOING_EVENT一起使用
  62. // DEFAULT_ALL 使用所有默认值,比如声音,震动,闪屏等等
  63. // DEFAULT_LIGHTS 使用默认闪光提示
  64. // DEFAULT_SOUND 使用默认提示声音
  65. // DEFAULT_VIBRATE 使用默认手机震动,需加上<uses-permission
  66. // android:name="android.permission.VIBRATE" />权限
  67. notification.defaults = Notification.DEFAULT_SOUND;
  68. // 设置通知的事件消息
  69. CharSequence contentTitle = msg; // 通知栏标题
  70. CharSequence contentText = msg; // 通知栏内容
  71. Intent notificationIntent = new Intent(this, TestActivity.class); // 点击该通知后要跳转的Activity
  72. PendingIntent contentItent = PendingIntent.getActivity(this, 0,
  73. notificationIntent, 0);
  74. notification.setLatestEventInfo(this, contentTitle, contentText,
  75. contentItent);
  76. // 把Notification传递给NotificationManager
  77. notificationManager.notify(0, notification);
  78. }
这样就可以在将接收到的消息在消息栏上显示了,点击后便可以进入相应的界面了。



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/601480
推荐阅读
相关标签
  

闽ICP备14008679号