-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatServer.java
38 lines (33 loc) · 925 Bytes
/
ChatServer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package chattingprogramming;
import java.io.*;
import java.net.*;
public class ChatServer
{
public static final int cs_port = 2777;
public static final int cs_maxclient=10;
public static void main(String args[]){
try{
ServerSocket ss_socket = new ServerSocket(cs_port);
while(true){
Socket sock = null;
ServerThread client = null;
try{
sock = ss_socket.accept();
client = new ServerThread(sock);
client.start();
}catch(IOException e){
System.out.println(e);
try{
if(sock != null)
sock.close();
}catch(IOException e1){
System.out.println(e);
}finally{
sock = null;
}
}
}
}catch(IOException e){
}
}
}