红叶萧萧 发表于 2010-3-27 20:13:36

java程序设计@

服务端代码:
import java.net.*;
import java.io.*;
public class ChatServer {
          

        public static void main(String[] args) {
                boolean started = false;
                ServerSocket ss = null;
                Socket s = null;
                DataInputStream dis =null;
                try{
                        ss = new ServerSocket(8888);
                }catch(BindException e){
                        System.out.println("端口被占用中.....");
                        System.out.println("请关掉相关服务器");
                        System.exit(0);
                }catch(IOException e) {
                        e.printStackTrace();
                }
                try{
                        started = true;
                        while(started) {
                                boolean bconnect = false;
                               
                                        s = ss.accept();
                                        bconnect = true;
                                        System.out.println("a clint connected!");
                                        dis = new DataInputStream(s.getInputStream());
                                        while(bconnect) {
                                               
                                                String str = dis.readUTF();
                                                System.out.println(str);
                                }
                                //dis.close();
                        }
                }catch(EOFException e) {
                        System.out.println("客户端退出");
                }catch(IOException e) {
                        e.printStackTrace();
                }finally{
                        try {
                                if(dis != null) dis.close();
                                if(s != null) s.close();
                        } catch (IOException e) {
                       
                                e.printStackTrace();
                        }
                }
        }

}

175082103 发表于 2010-3-27 20:21:11

{:5_659:}童鞋,你干什么!

思明送果的 发表于 2010-3-27 20:56:45

你有什么不能一次性发完吗? = =

huanlin 发表于 2010-3-27 22:15:03

路过、、、、、学C#的,看不得JAVA的东西

7零吧乐 发表于 2010-3-27 22:30:47

同楼上~~~~{:stuA30bbs:}

长角偶蹄类似物 发表于 2010-3-28 09:50:55

沙发 {:5_694:}

☆浅笑☆ 发表于 2010-3-28 09:51:21

{:5_699:}什么都看不懂

吴名氏 发表于 2010-6-15 12:28:12


同楼上,什么都看不懂。
页: [1]
查看完整版本: java程序设计@