dummyagain
March 13th, 2005, 11:14 AM
try{
ServerSocket ss = new ServerSocket(5011);
while (true){
System.out.println("cde");
s = ss.accept(); //get problems
System.out.println("abc");
................
it can only print the cde but not abc
so i think there is a problem in the s = ss.accept();
what shall i do to solve it?
Thank you
ServerSocket ss = new ServerSocket(5011);
while (true){
System.out.println("cde");
s = ss.accept(); //get problems
System.out.println("abc");
................
it can only print the cde but not abc
so i think there is a problem in the s = ss.accept();
what shall i do to solve it?
Thank you