public void sendData(InetAddress address){
try{
output = new ObjectOutputStream(socket.getOutputStream());
output.writeObject(TST);
output.close();
}
catch(IOException ee){
System.out.println("Error : " + ee);
}
}
服务器是多线程的。我的代码中有一部分使用 ObjectOutputStream 发送对象“TST”,如何控制将对象发送给特定客户端的方法,该客户端具有我在何时输入此方法的地址?