如何干净的实现Android/Java Socket 长连接通信

 我来答
yangjinlong76
活跃答主

2016-03-22 · 非职业答题人
知道顶级答主
回答量:5.7万
采纳率:94%
帮助的人:1.7亿
展开全部
你好,现编这个就是个多线程服务器,只要在client不释放连接,服务器端的run里边写while(TRUE)循环,那么就可以长期连接。
  class ConnectionThread extends Thread{
  Socket client;
  int counter;
  public ConnectionThread(Socket cl,int c){
  client = cl;
  counter= c;
  }
  @Override
  public void run()
  {
  try{
  String destIP=client.getInetAddress().toString();
  int destport =client.getPort();
  PrintStream outstream=new PrintStream(client.getOutputStream());
  DataInputStream instream=new DataInputStream(client.getInputStream());
  String inline=instream.readLine();
  }//try
  catch(IOException e){System.out.println(e);}
  }//run
护肤达人IT宅族
2016-03-22 · 知道合伙人互联网行家
护肤达人IT宅族
知道合伙人互联网行家
采纳数:5637 获赞数:17441
毕业于曲阜师范大学,学士学位。互联网行业2年从业经验,读过SEO相关书籍。现任爱家网SEO优化专员。

向TA提问 私信TA
展开全部
现编这个就是个多线程服务器,只要在client不释放连接,服务器端的run里边写while(TRUE)循环,那么就可以长期连接。
  class ConnectionThread extends Thread{
  Socket client;
  int counter;
  public ConnectionThread(Socket cl,int c){
  client = cl;
  counter= c;
  }
  @Override
  public void run()
  {
  try{
  String destIP=client.getInetAddress().toString();
  int destport =client.getPort();
  PrintStream outstream=new PrintStream(client.getOutputStream());
  DataInputStream instream=new DataInputStream(client.getInputStream());
  String inline=instream.readLine();
  }//try
  catch(IOException e){System.out.println(e);}
  }//run
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
易宝宝翻滚吧哈
2016-03-22 · TA获得超过349个赞
知道小有建树答主
回答量:355
采纳率:100%
帮助的人:126万
展开全部
现编这个就是个多线程服务器,只要在client不释放连接,服务器端的run里边写while(TRUE)循环,那么就可以长期连接。
  class ConnectionThread extends Thread{
  Socket client;
  int counter;
  public ConnectionThread(Socket cl,int c){
  client = cl;
  counter= c;
  }
  @Override
  public void run()
  {
  try{
  String destIP=client.getInetAddress().toString();
  int destport =client.getPort();
  PrintStream outstream=new PrintStream(client.getOutputStream());
  DataInputStream instream=new DataInputStream(client.getInputStream());
  String inline=instream.readLine();
  }//try
  catch(IOException e){System.out.println(e);}
  }//run
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式