who can help me to chek the socket server
bing8206
Posts: 2
the socket server can run in the AMX master, or not.
public void run() {
try{
ServerSocket server=null;
try{
server=new ServerSocket(4700);
}catch(Exception e) {
System.out.println("can not listen to:"+e);
}
Socket socket=null;
try{
socket=server.accept();
}catch(Exception e) {
System.out.println("Error."+e);
}
String line;
BufferedReader is=new BufferedReader(new InputStreamReader(socket.getInputStream()));
PrintWriter os=new PrintWriter(socket.getOutputStream());
BufferedReader sin=new BufferedReader(new InputStreamReader(System.in));
System.out.println("Client:"+is.readLine());
line=sin.readLine();
while(!line.equals("bye")){
os.println(line);
os.flush();
System.out.println("Server:"+line);
System.out.println("Client:"+is.readLine());
line=sin.readLine();
}
os.close();
is.close();
socket.close();
server.close();
}
catch(Exception e){
System.out.println("Error:"+e);
}
}
0
Comments
As this is all in a run() method too I'll assume that you've copied and pasted from some example code where this is part of a Runnable / Thread object. Whatever implementation you choose, just remember to make sure this server is in a thread otherwise Duet will hit that server.accept() call and block until anything connects (as well as blocking later as you read).