欢迎来到天天文库
浏览记录
ID:12458569
大小:57.00 KB
页数:6页
时间:2018-07-17
《java聊天程序源代码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、java聊天程序源代码,简单点,尽量带注释,注释越多越好谢谢悬赏分:20-解决时间:2010-8-216:12哥哥姐姐们尽量带多点的注释,我是初学者,谢谢了提问者:无伤一号-二级最佳答案服务端:importjava.io.*;importjava.net.*;importjava.util.*;publicclassChatServer{booleanstat=false;ServerSocketss=null;Listclients=newArrayList();//用于存客户端publicstaticvoidmain(String[]args
2、){newChatServer().start();}publicvoidstart(){try{ss=newServerSocket(8888);stat=true;}catch(BindExceptione){//Sever端已经运行,当重复运行时抛异常System.out.println("端口正在使用中。。。。");System.out.println("请关掉相关程序并重新运行服务器!");//还会抛别的异常,所以直接关闭窗口System.exit(0);}catch(IOExceptione){e.printStackTrace();}try{while(stat)
3、{Sockets=ss.accept();System.out.println("aclientconnected!");//测试语句写在最左边,以后没用可以删除或注掉Clientc=newClient(s);//每建立一个客户端,就new一个客户端对象,启动一个线程newThread(c).start();clients.add(c);//勿忘写,将每个客户端加入到容器里}}catch(IOExceptione){e.printStackTrace();}finally{try{ss.close();}catch(IOExceptione){e.printStackTrace
4、();}}}classClientimplementsRunnable{privateSockets;privateDataInputStreamdis;privateDataOutputStreamdos;privatebooleancont=false;publicClient(Sockets){this.s=s;try{dis=newDataInputStream(s.getInputStream());//初始化dos=newDataOutputStream(s.getOutputStream());cont=true;}catch(IOExceptione){e.pr
5、intStackTrace();}}publicvoidsend(Stringstr){//用于发送给客户端try{dos.writeUTF(str);}catch(IOExceptione){clients.remove(this);//移除那个退出的对象System.out.println("一个客户退出了");//e.printStackTrace();}}publicvoidrun(){try{while(cont){Stringstr=dis.readUTF();//阻塞式方法System.out.println(str);for(inti=0;i6、ize();i++){Clientc=clients.get(i);//取客户端c.send(str);}/*另外两种方法,但不适用,它会锁定服务端for(Iteratorit=clients.iterator();it.hasNext();){Clientc=it.next();c.send(str);}Iteratorit=clients.iterator();while(it.hasNext()){Clientc=it.next();c.send(str);}*/}}catch(EOFExceptione){//readUTF()阻塞式方法7、,所以关闭客户端会抛异常System.out.println("Clientclosed!");}catch(IOExceptione){e.printStackTrace();}finally{try{if(dis!=null)dis.close();if(dos!=null)dos.close();if(s!=null){s.close();s=null;//更严格的方法,等于空就没人去用了,垃圾收集器就回收走}}catch(IOExceptione){e.printStackTrace
6、ize();i++){Clientc=clients.get(i);//取客户端c.send(str);}/*另外两种方法,但不适用,它会锁定服务端for(Iteratorit=clients.iterator();it.hasNext();){Clientc=it.next();c.send(str);}Iteratorit=clients.iterator();while(it.hasNext()){Clientc=it.next();c.send(str);}*/}}catch(EOFExceptione){//readUTF()阻塞式方法
7、,所以关闭客户端会抛异常System.out.println("Clientclosed!");}catch(IOExceptione){e.printStackTrace();}finally{try{if(dis!=null)dis.close();if(dos!=null)dos.close();if(s!=null){s.close();s=null;//更严格的方法,等于空就没人去用了,垃圾收集器就回收走}}catch(IOExceptione){e.printStackTrace
此文档下载收益归作者所有