Server.java
上传用户:ptnike
上传日期:2007-06-15
资源大小:61k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Java

  1. import java.io.*;
  2. import java.net.*;
  3. import java.util.ArrayList;
  4. /**
  5.  * <p>Title: chess server</p>
  6.  * <p>Description: chess server</p>
  7.  * <p>Copyright: Copyright (c) 2003</p>
  8.  * <p>Company: e-top</p>
  9.  * @author cylix
  10.  * @version 1.0
  11.  */
  12. public class Server {
  13.     public static final int PORT = 8180;
  14.     public static ArrayList playerList = new ArrayList();
  15.     public static ArrayList groupList = new ArrayList();
  16.     public static void main(String[] args)throws IOException {
  17.         ServerSocket s = new ServerSocket(PORT);
  18.         System.out.println("Welcome using ChessWZQ1.0 server (alpha test)...nAuthor:cylixnCopyright:e-topnMail:cylix_xtcc@sina.com");
  19.         System.out.println("Server Started at port "+PORT+"...");
  20.         try {
  21.             while(true) {
  22.                 // Blocks until a connection occurs:
  23.                 Socket socket = s.accept();
  24.                 try {
  25.                     ServeOneClient server = new ServeOneClient(socket);
  26.                     Player client = new Player();
  27.                     client.selfSocket = server;
  28.                     playerList.add(client);
  29.                     //System.out.println("create a socket frome server");
  30.                 } catch(IOException e) {
  31.                     // If it fails, close the socket,
  32.                     // otherwise the thread will close it:
  33.                     socket.close();
  34.                 }
  35.             }
  36.         } finally {
  37.             s.close();
  38.         }
  39.     }
  40. }///:-)