使用 WiFi 和 java 套接字编程进行服务器与客户端聊天
我想在两台计算机之间使用 WiFi 连接(临时)制作一个聊天程序。 我熟悉java中的套接字编程,但我无法在2台计算机上实现它。 你能帮我将 WiFi 网络添加到我的程序中吗?
I want to make a chat program using WiFi connection between 2 computers (ad-hoc).
I'm familiar with socket programming in java, but I can't implement this in 2 computers.
Could you help me to add WiFi network to my program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WiFi 网络上的每台计算机都有一个 IP 地址。使用一台计算机作为主机,您可以创建 ServerSocket。
您的另一台计算机将作为客户端,并且可以连接到您主机的 IP 地址。
然后,您可以通过 Wifi(以及任何其他网络)准备好客户端/服务器。
Each computer on your WiFi network will have an IP address. Using one computer as the host, you create your ServerSocket.
Your other computer will be the client, and can connect to the IP address of your host.
You then have your client/server over Wifi (and any other network for that matter) ready to go.