- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当 UDP 本身被设计为无连接时,我无法理解为什么在 Java 中可以从 DatagramSocket 抛出 PortUnreachableException。我对UDP的理解是,当数据包无法传送时就会被丢弃。为什么使用 DatagramSocket 实现 UDP 的 Java 会提供有关数据包传送的反馈?
最佳答案
在这种情况下,“无连接”是指 UDP 不进行握手来建立连接。而且,除非服务器协议(protocol)设计为发送数据包,否则不会确认收到发送的数据包,因此 UDP 确实具有连接的套接字。不是同一件事。
虽然 DatagramSocket 有一个 connect 方法,但 API 声明:
If the remote destination to which the socket is connected does not exist, or is otherwise unreachable, and if an ICMP destination unreachable packet has been received for that address, then a subsequent call to send or receive may throw a PortUnreachableException. Note, there is no guarantee that the exception will be thrown.
因此,您有可能将数据发送到某个地址,但没有任何迹象表明实际上没有连接。
这一切都取决于操作系统的实现,例如在 Linux 中,有一种方法可以建立连接来优化路由 http://man7.org/linux/man-pages/man7/udp.7.html#DESCRIPTION提高性能,因为 UDP 不代表 future 的路由,因此如果提前调用 connect 它将能够显着提高性能您可以阅读有关此的更多信息 in this answer专门研究 Linux 中的 UDP
关于Java + UDP + DatagramSocket : Why is a PortUnreachableException thrown, 当 UDP 被设计为无连接时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59630718/
我是一名优秀的程序员,十分优秀!