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();
}
}
}
} {:5_659:}童鞋,你干什么! 你有什么不能一次性发完吗? = = 路过、、、、、学C#的,看不得JAVA的东西 同楼上~~~~{:stuA30bbs:} 沙发 {:5_694:} {:5_699:}什么都看不懂
同楼上,什么都看不懂。
页:
[1]