所以我的程序的最终结果是一个更新的游戏客户端,但到目前为止我拥有的是一个能够接受多个连接的服务器,以及一个连接到服务器的客户端。这是客户端部分的代码:
public void client() {
Socket socket = null;
ObjectInputStream in = null;
ObjectOutputStream out = null;
try {
socket = new Socket(IP, Integer.parseInt(port));
in = new ObjectInputStream(socket.getInputStream());
out = new ObjectOutputStream(socket.getOutputStream());
} catch (Exception e) {
e.printStackTrace();
}
do {
// have a conversation
try {
message = (String) in.readObject();
System.out.println("\n" + message);
} catch (Exception e) {
System.out.println("\n idk wtf that user sent!");
}
} while (!message.equals("CLIENT - END")); // When the user types "END"
System.err.println("CLOSED!!!");
System.exit(0);
}
这是服务器部分的代码:
public void run() {
// where everything happens
System.out.println("server- connected");
try {
in = new ObjectInputStream(socket.getInputStream());
out = new ObjectOutputStream(socket.getOutputStream());
out.writeObject("hi");
out.flush();
Thread.sleep(5000);
out.writeObject("close");
out.flush();
System.out.println("closed");
} catch (Exception e) {
e.printStackTrace();
}
}
现在,我遇到了这个问题,当我的服务器发送对象时"hi"
,客户端似乎没有收到它。我不完全确定它是否确实如此,但如果它得到它,它不会像我想要的那样打印出来。我以前制作了一个做同样事情的聊天程序,我几乎把它复制到这个,但它不是交流。我得到的最多的是确认它们已连接。我不确定发生了什么,但任何帮助将不胜感激!提前致谢!