所以我有一个家庭作业,在一台服务器上创建2个客户端,在一台服务器上进行通信。客户端1和客户端2可以与服务器通信,但我需要2个客户端与每个客户端进行通信,我很难过?
我很确定我正在使用ArrayList添加客户端并使用for循环来完成它们。我只是不知道如何连接t客户端以相互通信。这是我的代码。
//通信线程类在Server.class文件中。 while true循环中的for循环应该使2个客户端进行通信但不是??
class ComThreads implements Runnable{
private Socket s;
java.util.Date date=new java.util.Date();
public ComThreads(Socket s)
{
this.s=s;
}
public void run()
{ try {
DataInputStream inputFromClient = new DataInputStream(
s.getInputStream());
DataOutputStream outputToClient = new DataOutputStream(
s.getOutputStream());
while(true) {
String line=inputFromClient.readUTF();
for(int i=0; i < clientList.size(); i++) {
if(clientList.get(i).equals(s)) {
Socket tempSoc=clientList.get(i);
DataOutputStream msOut=new DataOutputStream(tempSoc.getOutputStream());
msOut.writeUTF(line);
//outputToClient.writeUTF(message);
msOut.flush();
}
}
Platform.runLater(()->{
ta.appendText(line);
ta.appendText("\n");
});
}
} catch (IOException e) {
e.printStackTrace();
}finally {
try {
s.close();
}catch(IOException e) {
// later
}
}
}
}
}
只需要2个客户进行沟通。任何帮助,将不胜感激。谢谢
我搞定了。我所要做的就是添加一个Runnable类,它读取Client消息并将其传递给另一个客户端。所以我只是在我的Client类中缺少一个线程。谢谢。