使用 UDP 协议在 C Sharp 中将文件从一台计算机发送到另一台计算机

发布于 2024-10-01 08:40:48 字数 71 浏览 2 评论 0原文

我想使用 UDP 协议将文件从一台计算机发送到另一台计算机。我该如何执行此操作?

我想要一个样本来发送文件...

I Want Send A File From A Computer To Other Computer With UDP protocol.How Can I do this?

I Want A Sample To Send File...

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

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

发布评论

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

评论(4

流殇 2024-10-08 08:40:48

您可以使用 UdpClient

UDP 不能保证传送 - 如果您必须分解文件,这尤其成问题。请参阅此处的讨论 - 如何使用 C# UdpClient 发送大数据?< /a>

如果这是点对点的(如问题所示),则使用 传输文件

TransmitFile函数传输
通过连接的套接字文件数据
处理。该函数使用
操作系统的缓存管理器
检索文件数据,并提供
高性能文件数据传输
通过套接字。

You can use UdpClient.

Delivery is not guaranteed with UDP - if you have to break the file up, this is especially problematic. See here for a discussion - How to send large data using C# UdpClient?

If this is point-to-point (as the question suggests), it would be simple to write some native code to do this using TransmitFile.

The TransmitFile function transmits
file data over a connected socket
handle. This function uses the
operating system's cache manager to
retrieve the file data, and provides
high-performance file data transfer
over sockets.

掩于岁月 2024-10-08 08:40:48

使用 UdpClient 类。

Use the UdpClient Class.

一杆小烟枪 2024-10-08 08:40:48

UDP 没有固有的文件知识(它在协议栈中的位置要低得多),因此可能值得研究已建立的 基于UDP的文件传输协议。其中一些可能具有 .NET 实现。

否则,您将自己做很多工作(例如,确保文件被分成几部分,确保所有数据包都被接收并且它们以正确的顺序接收,等等)

UDP has no inherent knowledge of files (it is much lower in the protocol stack), so it might be worth investigating one of the established UDP-based file transfer protocols. Some of them might have .NET implementations.

Otherwise, you are going to be doing a lot of work on your own (e.g. ensuring that the file is broken up into pieces, making sure that all packets are received AND that they are received in the correct order, etc.)

遥远的绿洲 2024-10-08 08:40:48

下面的链接显示了如何使用 C# 发送和接收 UDP 数据包的各种示例

http:// /www.java2s.com/Code/CSharp/Network/UdpClientMultiReceive.htm

The link below shows various examples of how to send and receive UDP packets with C#

http://www.java2s.com/Code/CSharp/Network/UdpClientMultiReceive.htm

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