快速业务通道

[JAVA100例]044、多线程服务器:每个人都有份 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21

[JAVA100例]044、多线程服务器:每个人都有份

时间:2011-01-09

// 文件名:moreServer.java import java.io.*; import java.net.*; import java.util.*; /** * <p>Title: 多线程服务器</p> * <p>Description: 本实例使用多线程实现多服务功能。</p> * <p>Copyright: Copyright (c) 2003</p> * <p>Filename: </p> * @version 1.0 */ class moreServer { public static void main (String [] args) throws IOException {   System.out.println ("Server starting...\n");   //使用8000端口提供服务   ServerSocket server = new ServerSocket (8000);   while (true)   {    //阻塞,直到有客户连接    Socket sk = server.accept ();    System.out.println ("Accepting Connection...\n");    //启动服务线程    new ServerThread (sk).start ();   } } } //使用线程,为多个客户端服务 class ServerThread extends Thread { private Socket sk; ServerThread (Socket sk) {   this.sk = sk; } //线程运行实体 public void run () {   BufferedReader in = null;   PrintWriter out = null;   try{    InputStreamReader isr;    isr = new InputStreamReader (sk.getInputStream ());    in = new BufferedReader (isr);    out = new PrintWriter (       new BufferedWriter(        new OutputStreamWriter(         sk.getOutputStream ())), true); while(true){     //接收来自客户端的请求,根据不同的命令返回不同的信息。     String cmd = in.readLine ();     System.out.println(cmd);     if (cmd == null)       break;     cmd = cmd.toUpperCase ();     if (cmd.startsWith ("BYE")){      out.println ("BYE");      break;     }else{      out.println ("你好,我是服务器!");     }    }    }catch (IOException e)    {     System.out.println (e.toString ());    }    finally    {     System.out.println ("Closing Connection...\n");     //最后释放资源     try{     if (in != null)      in.close ();     if (out != null)      out.close ();      if (sk != null)       sk.close ();     }     catch (IOException e)     {     System.out.println("close err"+e);     }    } } } //文件名:SocketClient.java import java.io.*; import java.net.*; class SocketThreadClient extends Thread { public static int count = 0; //构造器,实现服务 public SocketThreadClient (InetAddress addr) {   count++;   BufferedReader in = null;   PrintWriter out = null;   Socket sk = null;   try{   //使用8000端口   sk = new Socket (addr, 8000);   InputStreamReader isr;   isr = new InputStreamReader (sk.getInputStream ());   in = new BufferedReader (isr);   //建立输出   out = new PrintWriter (       new BufferedWriter(       new OutputStreamWriter(        sk.getOutputStream ())), true);   //向服务器发送请求   System.out.println("count:"+count);   out.println ("Hello");   System.out.println (in.readLine ());   out.println ("BYE");   System.out.println (in.readLine ()); }   catch (IOException e)   {   System.out.println (e.toString ());   }   finally   {   out.println("END");   //释放资源   try   {    if (in != null)    in.close ();    if (out != null)    out.close ();    if (sk != null)    sk.close ();   }   catch (IOException e)   {   }   } } } //客户端 public class SocketClient{   public static void main(String[] args) throws IOException,InterruptedException   {    InetAddress addr = InetAddress.getByName(null);     for(int i=0;i<10;i++)      new SocketThreadClient(addr);     Thread.currentThread().sleep(1000);   } }

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号