Java 中的多播

发布于 2024-12-07 10:21:14 字数 639 浏览 1 评论 0原文

我有很多关于这个例如。因此枚举它们:

  1. 为什么它们使用数据报套接字?还有其他替代方案吗?
  2. 我试图通过这个示例中的数据报套接字发送对象< /a>.服务器需要很长时间才能从客户端接收对象。还有其他选择吗?

注意 - 我正在尝试集成这两个程序来制作一个网络发现程序,其中客户端以对象的形式回复其详细信息。

I've got a lot of questions regarding this e.g.. Hence enumerating them:

  1. Why do they use datagram sockets? Is there another alternative to them?
  2. I'm trying to send objects over the datagram sockets in this example. It takes a long time for the server to receive the object from the client's side. Is there any alternative to that as well?

Note - I'm trying to integrate both programs to make a network discovery program wherein the client replies with it's details in the form of an object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-12-14 10:21:14

对于第一个问题,您需要数据报(UDP),因为 tcp 是面向连接的协议。即每个连接用于一台服务器和一个客户端之间的通信。您可以将多个客户端连接到服务器,但它们都是单独的单播通信。

关于你的第二个问题,我认为你观察到的延迟不是由于你的代码造成的。发布有关您的拓扑等的更多详细信息以帮助解决该问题。

For your first question, you need datagrams (UDP) because tcp is a connection oriented protocol. i.e., each connection is for communication between one server and one client. You can have multiple clients connected to a server, but they'd all be individual unicast communication.

Regarding your second question, I don't think a delay you observe is due to your code. Post more details about your topology, etc. to help solve that issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文