所以这是交易: 我有一台运行的服务器,它通过TCP套接字不断接受客户端:
public ArrayList<Socket> lista_users = new ArrayList<Socket>();
Socket s;
s = serverSocket.accept();
lista_users.add(s);
avisa_all(lista_users, s);
Thread t_trata_cliente = new Thread(new trata_cliente(lista_users, s));
t_trata_cliente.start(); //this Thread is responsable for interacting with
//the clients (where my question is)
将套接字保存在阵列列表中。 之后我想向我的客户发送不同类型的信息(线程“trata_cliente”)。 当我说不同类型的信息时,我首先发送一条警告信息,然后是一个对象,然后是一些消息,然后再次发送对象。
最好的方法是什么?