码迷,mamicode.com
首页 > 编程语言 > 详细

服务器端启动soket多线程

时间:2015-08-20 01:09:50      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

 

方法一:

Socket socket=null

try{

  ServerSocket serversocket=nwe ServerSocket(8080)

  while(true){

    socket=serversocket.apccet();

    new ServerThread(socket).start();

  }

}catch(IOException e){

  e.printStackTrace()

}

 

方法二:

public  class ServerThread extends Thread{

  private Socket socket;

  public ServerSocket(socket){

    this.socket=socket;

  }

  public void run(){

      //复写run方法

    InputStream is=null;

    OutputStream os=null;

    String ip=socket.getLocalAddress().getHostAddress();

    String port=socket.getPort();

    try{

      while(true){

        in=socket.getInputStream();

        byte[] buffer=new byte[1024];

        int index=in.read(buffer);

        String receive=new String(buffer,0,index);

        System.out.println ("接受到服务器的内容是"+receive);

        if(recive=="exit") break;

        out=sokect.getOutputStream();

        String mes="word";

        out.write(mes.getBytes());

        System.out.println ("向服务器发送的内容:"+receive);

      }

      in.close();

      out.close();

      socket.close();

    }catch(IOException){

      e.printStackTrace();

    }

  }

}

服务器端启动soket多线程

标签:

原文地址:http://www.cnblogs.com/java-php/p/4743849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!