我正在通过我发现的一个简单教程制作一个TCP聊天服务器,我对java有点新意。我最终将建立一个客户端类,但到目前为止我一直在通过telnet进行测试。我有几个问题。我已设置服务器从客户端获取命令。例如,“EXIT”关闭客户端连接,“Username”打印“OK”。如下所示:
USER 1:TIM
Welcome to Bob's Chat Server!
Please Enter a User Name:
Tim
Welcome Tim we hope you enjoy your chat today
Bob:Hello
Hi Bob
Tim
OK
EXIT
Closing Connection . . . Goodbye
USER 2:BOB
Welcome to Bob's Chat Server!
Please Enter a User Name:
Bob
Welcome Bob we hope you enjoy your chat today
Hello
Tim:Hi Bob
Tim:Tim
我想解决三个问题:
你会注意到当用户1键入“Tim”(他的用户名)时,它就像我想要的那样说“OK”,但它也向用户2打印了“Tim”。有没有办法让它不发送我输入的命令?因此,当我键入“Tim”时,它不会向USER 2打印“Tim”吗?
当消息发送给其他用户时,会显示谁说出来。有没有办法在两个连接上打印名称?例如,当USER 2说“Hello”时,它看起来更像是两个连接上的“Bob:Hello”?
有没有办法跟踪整个聊天会话中说的所有内容,并将聊天的全部内容打印到用户请求的内容?
这是我的服务器代码:
// Chat Server runs at port no. 9020
import java.io.*;
import java.util.*;
import java.net.*;
import static java.lang.System.out;
public class TCPServer
{
Vector<String> users = new Vector<String>();
Vector<HandleClient> clients = new Vector<HandleClient>();
int PORT = 9020;
int NumClients = 10;
public void process() throws Exception
{
ServerSocket server = new ServerSocket(PORT,NumClients);
out.println("Server Connected...");
while( true)
{
Socket client = server.accept();
HandleClient c = new HandleClient(client);
clients.add(c);
} // end of while
}
public static void main(String ... args) throws Exception
{
new TCPServer().process();
} // end of main
public void boradcast(String user, String message)
{
// send message to all connected users
for (HandleClient c : clients)
if (!c.getUserName().equals(user))
{
c.sendMessage(user,message);
}
}
class HandleClient extends Thread
{
String name = "";
BufferedReader input;
PrintWriter output;
public HandleClient(Socket client) throws Exception
{
// get input and output streams
input = new BufferedReader(new InputStreamReader(client.getInputStream())) ;
output = new PrintWriter (client.getOutputStream(),true);
output.println("Welcome to Bob's Chat Server!\n");
// read name
output.println("Please Enter a User Name: ");
name = input.readLine();
users.add(name); // add to vector
output.println("Welcome "+name+" we hope you enjoy your chat today");
start();
}
public void sendMessage(String uname,String msg)
{
output.println( uname + ":" + msg);
}
public String getUserName()
{
return name;
}
public void run()
{
String line;
try
{
while(true)
{
line = input.readLine();
if("EXIT".equals(line))
{
output.println("Closing Connection . . . Goodbye");
clients.remove(this);
users.remove(name);
break;
}
else if(name.equals(line))
{
output.println("OK");
}
boradcast(name,line); // method of outer class - send messages to all
}// end of while
} // try
catch(Exception e)
{
System.out.println(e.getMessage());
}
} // end of run()
} // end of inner class
} // end of Server
感谢任何帮助。谢谢。
答案 0 :(得分:2)
我已根据您的喜好修改了您的代码,请查看:
对于第1点:
public void run()
{
String line;
try
{
while(true)
{
line = input.readLine();
if("EXIT".equals(line))
{
output.println("Closing Connection . . . Goodbye");
clients.remove(this);
users.remove(name);
break;
}
else if(name.equals(line))
{
output.println("OK");
}
else
{
// Seems to me just adding this else part will do the trick for point one.
boradcast(name,line); // method of outer class - send messages to all
}
}// end of while
} // try
catch(Exception e)
{
System.out.println(e.getMessage());
}
}
对于第2点:
在我看来,你正在键入控制台来获取输入,在这种情况下至少你必须输入你要发送给另一方的内容,然后你可以添加你的修改,如图所示方法的第一行,broadcast();,以便您可以满足您对Point 2的需求,或者(否则您可以让服务器端将其发送回客户端,该消息包含该名称,它就像客户端将他的消息发送到服务器而服务器正在发回所有客户端。)
public void boradcast(String user, String message)
{
System.out.println(user + " : " + message);
// send message to all connected users
for (HandleClient c : clients)
if (!c.getUserName().equals(user))
{
c.sendMessage(user,message);
}
}
对于第3点,您可以将对话写入文件或将其保存到数据库中,这对您来说是合适的。
既然你说你是Java的新手,你最好看看java.nio。这个包比以前的java.io包更好。
最新编辑:
试试这个小样本代码,希望这可能符合您的要求:
import java.io.*;
public class StringConsole
{
public static void main(String... args) throws IOException
{
int count = 0;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
while (count < 5)
{
System.out.print("My Name : ");
String message = br.readLine();
count++;
}
}
}
希望这可能会对你有所帮助。
此致
答案 1 :(得分:1)
有没有办法让它不发送我输入的命令?所以,当我 键入“Tim”它不会向USER 2打印“Tim”?
您已将用户名存储在HandleClient中;当其run方法获得输入时,它会检查用户是否输入了他的名字。所以,如果他这样做,或者如果他输入了命令,就不要打广播。
当消息发送给其他用户时,它会显示谁说出来。是 有没有办法在两个连接上打印名称?比如什么时候 用户2说“你好”它看起来更像是“鲍勃:你好” 连接吗?
我见过的大多数聊天客户都有一个用于保持对话的多行窗口和一个用于输入文本的小窗口。用户在小窗口中输入他的文本,服务器将其广播回给他。因此,服务器可以在广播时在每条消息之前添加用户名和冒号,这将与用户在其自己的客户端上键入的内容分开。
有没有办法跟踪整个过程中所说的一切 聊天会话并打印出聊天的全部内容 用户请求了吗?
不确定。将其全部写入文件中。看看java.io.FileWriter。