Android中通过socket建立长连接实现推送功能

Android中通过socket建立长连接实现推送功能,当前需求服务器给客户端推送消息

//输入的是服务器端的ip号
 private String mIp;
 //进入首界面给服务器发送请求,拿到服务器分配的端口号,如果客户端自己分配端口号,很容易造成端口号冲突
 private String port;


 //启动线程,接收服务器发送过来的数据
  new Thread(EmptyActivity.this).start();
 public void run() {
        try {
            socket = new Socket(mIp, Integer.parseInt(port));
            while (true) {
                in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
                if (!socket.isClosed()) {
                    if (socket.isConnected()) {
                        if (!socket.isInputShutdown()) {
            //content这是你接收到的数据,根据情况去处理数据
                                content += "\n";
                                Message msg = new Message();
                                msg.obj = content;
                                mHandler.sendMessage(msg);
                                Log.e("===content===", content);

                            } else {
                                Toast.makeText(EmptyActivity.this, "无数据",    Toast.LENGTH_SHORT).show();
                            }
                        }
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

你可能感兴趣的:(Android中通过socket建立长连接实现推送功能)