gpt4 book ai didi

java - 如何使用 TCP 连接同时接受多个客户端?

转载 作者:可可西里 更新时间:2023-11-01 02:49:07 26 4
gpt4 key购买 nike

我有一个服务器,它通过套接字与客户端建立 TCP 连接。因为我的应用程序应该是聊天,所以我需要服务器使用同一端口同时接受多个客户端,以便他们可以实时通信。我的服务器端是一个 Java 应用程序,我的客户端是一个 Android 应用程序。

有可能做这样的事情吗?如果是,我该怎么做?

这是我的服务器代码:

public class Server {

public static void main(String[] args){

ServerClass server = new ServerClass();
server.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
server.inizia();
}
}




public class ServerClass extends JFrame {

JTextArea testoarea;
String messaggio;
ObjectOutputStream output;
DataInputStream input;
ServerSocket server;
Socket connessione;

public ServerClass(){
super("Server in Ascolto");
testoarea = new JTextArea();
add(new JScrollPane(testoarea));
setSize(600, 700);
setVisible(true);


}
public void inizia()
{
try {

server = new ServerSocket(7100);
while(true)
{
try {

iniziaConnessione();
sistemaCanali();
chatta();
//closeCrap();

} catch (EOFException eofException) {
// TODO: handle exception
showMessage("Il Server ha perso la connessione..\n");
}
}
} catch (IOException ioException) {
// TODO: handle exception
ioException.printStackTrace();
}


}

private void iniziaConnessione() throws IOException {
// TODO Auto-generated method stub
showMessage("Aspetto qualcuno per connettermi.... \n");
connessione = server.accept();
showMessage("Mi sono connesso a qalcuno... \n");

}

private void sistemaCanali() throws IOException {
// TODO Auto-generated method stub
output = new ObjectOutputStream(connessione.getOutputStream());
output.flush();
input = new DataInputStream(connessione.getInputStream());
showMessage("I canali sono apposto... \n");
}


private void chatta() throws IOException {
// TODO Auto-generated method stub

String messaggio = "Sei connesso e pronto a chattare... \n";
showMessage(messaggio);
messaggio = (String) input.readUTF();
showMessage("Client - " + messaggio);
sendData(messaggio);


}
private void sendData(String messaggio2) {
// TODO Auto-generated method stub
try {
output.writeUTF(messaggio2);
output.flush();

} catch (IOException e) {
// TODO Auto-generated catch block
showMessage("ERRORE: non riesco a inviare il messaggio... \n");
}
}
private void showMessage(final String text) {
// TODO Auto-generated method stub
SwingUtilities.invokeLater(
new Runnable() {
public void run() {
testoarea.append(text);
}
}
);
}


}

最佳答案

接受客户端后,使用另一个线程来管理与它的通信。不要在运行 accept() 循环的同一线程中管理您的通信。然后,您的客户端线程可以根据需要在客户端之间来回传递数据,而不会干扰服务器同时接受新客户端的能力。

关于java - 如何使用 TCP 连接同时接受多个客户端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23795682/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com