作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个客户端-服务器 GUI 应用程序,在这里我想在它们之间发送和接收消息。条件是,当客户端向服务器发送“Hello”时,服务器只回复一条消息“Hello Client,我是服务器”。那么,在这种情况下我该如何使用 if else 呢?
public void startRunning() throws ClassNotFoundException
{
try
{
server = new ServerSocket(port, totalClients);
while(true)
{
try
{
status.setText(" Waiting for Someone to Connect...");
connection = server.accept();
status.setText(" Now Connected to " + connection.getInetAddress().getHostName());
output = new ObjectOutputStream(connection.getOutputStream());
//output.flush();
input = new ObjectInputStream(connection.getInputStream());
whileChatting();
}catch(EOFException eofException)
{
}
}
}
catch(IOException ioException)
{
}
}
private void whileChatting() throws IOException, ClassNotFoundException
{
String message="";
jTextField1.setEditable(true);
do{
message = (String) input.readObject();
chatArea.append("\n"+message);
}
while(!message.equalsIgnoreCase("Client - Quit"));
}
private void sendMessage(String message)
{
try
{
output.writeObject("Server - " + message);
output.flush();
chatArea.append("\nServer - " + message);
}
catch(IOException ioException)
{
chatArea.append("\n Unable to Send Message");
JOptionPane.showMessageDialog(null,"Unable to Send Message", "Warning", JOptionPane.WARNING_MESSAGE);
}
}
最佳答案
查看您的代码并尝试找出消息的接收和处理发生的位置。
检查“Hello”的 if 语句并通过
发回您的消息sendMessage("Hello Client, I am server")
关于java - 如何将 IF ELSE 语句与流类一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56129465/
我是一名优秀的程序员,十分优秀!