简单的java聊天室



很简单,我想创建一个聊天室,接受多个客户端,所有客户端都可以分配自己的ID。每当他们输入任何内容时,都会发送给所有用户。目前,我有一个echo客户端服务器,客户端在其中输入一些内容并将其回显。我的第一个问题是如何允许用户为自己提供用户名?很明显,我需要一个接受名称的变量,你建议我把它放在哪个类中?我该怎么取这个名字呢if (theInput.equalsIgnoreCase("username" : "")

然后我所需要做的就是回应客户对所有客户说的话。我不知道该怎么做,所以任何建议都将不胜感激。虽然我在网上找到了一些教程和示例代码,但我不理解它,如果我不理解,即使它确实有效,我也会觉得使用它不舒服。感谢

这是我的代码:EchoClient

'// echo client
import java.util.Scanner;
import java.io.*;
import java.net.*;
public class EchoClient {
public static void main(String[] args) throws IOException { 
Socket echoSocket = null;
//PrintWriter socketOut = null;
try {
echoSocket = new Socket("127.0.0.1", 4444); // connect to self at port 4444
System.out.println("Connected OK");
Scanner socketIn = new Scanner(echoSocket.getInputStream());  // set up input from socket
PrintWriter socketOut = new PrintWriter(echoSocket.getOutputStream(), true);    // set up output to socket
Scanner kbdIn = new Scanner(System.in);     // Scanner to pick up keyboard input
String serverResp = "";
String userInput = kbdIn.nextLine();        // get input from the user
while (true) {
socketOut.println(userInput);                   // send user input to the socket
serverResp =  socketIn.nextLine();     // get the response from the socket
System.out.println("echoed back: " + serverResp);   // print it out
if (serverResp.equals("Closing connection")) { break; } //break if we're done
userInput = kbdIn.nextLine();   // get next user input
}
socketOut.close();
kbdIn.close();
socketIn.close();
}
catch (ConnectException e) {
System.err.println("Could not connect to host");
System.exit(1);
}
catch (IOException e) {
System.err.println("Couldn't get I/O for connection");
System.exit(1);
}
echoSocket.close();
} 

}'

EchoServer

// multiple (threaded) server
import java.net.ServerSocket;
import java.net.Socket;
public class EchoServerMult {
public static void main(String[] args) throws Exception {
ServerSocket serverSocket = new ServerSocket(4444);   // create server socket on this machine
System.err.println("Started server listening on port 4444");
while (true) {        // as each connection is made, pass it to a thread
//new EchoThread(serverSocket.accept()).start();  // this is same as next 3 lines
Socket x = serverSocket.accept();   // block until next connection
EchoThread et = new EchoThread(x);
et.start();  
System.err.println("Accepted connection from client");
}
}

}

EchoThread

// thread to handle one echo connection
import java.net.*;
import java.io.*;
import java.util.Scanner;
public class EchoThread extends Thread {
private Socket mySocket = null;
public EchoThread(Socket socket) {       // constructor method
mySocket = socket;
}
public void run() {
try {
PrintWriter out = new PrintWriter(mySocket.getOutputStream(), true);
Scanner in = new Scanner(mySocket.getInputStream());
String inputLine;
while (true) {
inputLine = in.nextLine();      
if (inputLine.equalsIgnoreCase("Bye")) {
out.println("Closing connection");
break;      
} else {
out.println(inputLine);
}
}
out.close();
in.close();
mySocket.close(); 
} catch (Exception e) {
System.err.println("Connection reset");   // bad error (client died?)
}
}

}

最简单的可能是拥有一个公共类,所有客户端都使用观察器模式连接到该类(当它们被创建时)。该链接甚至提供了一些java代码。

要让客户端有一个用户名,最简单的方法就是让服务器发送的第一条消息是"输入您想要的用户名:",然后按原样获取返回值。否则,您可以使用inputLine.substring(int)username:{username}获取用户名。您可以将用户名存储在EchoThread中。避免重复的用户名需要在EchoServer中存储一组用户名。然后,您可以将用户名和消息一起传递给Observable类。

目前,您的程序使用顺序消息传递,就像客户端和服务器交替发送消息一样(更具体地说,客户端发送消息,然后服务器发回相同的消息)。您需要更改此设置,以便客户端可以随时接收消息。您可以通过在客户端创建一个线程来实现这一点,该线程要么只发送,要么只接收(并在客户端本身中执行另一个)。在客户端:

...
System.out.println("Connected OK");
PrintWriter socketOut = new PrintWriter(echoSocket.getOutputStream(), true);    // set up output to socket
new ReceiverThread(echoSocket).start();
while (true)
{
String userInput = kbdIn.nextLine();        // get input from the user
socketOut.println(userInput);                   // send user input to the socket
}
...

ReceiverThread在try ... catch中运行方法:(其余看起来与EchoThread相同)

Scanner in = new Scanner(mySocket.getInputStream());
while (true)
{
String inputLine = in.nextLine();      
if (inputLine.equalsIgnoreCase("Bye"))
{
out.println("Closing connection");
System.exit(0);      
}
else
{
out.println(inputLine);
}
}

System.exit()可能不是最好的主意,但这只是给你一些做什么的想法。

最新更新