是否可以通过套接字 TCP 发送 ListViewItem?

发布于 2025-01-05 21:15:11 字数 153 浏览 1 评论 0 原文

我正在制作一个文件管理器(服务器客户端应用程序),这样我就可以处理远程计算机文件
我使用 listview 来观看远程文件
是否有可能通过 TCP 套接字发送 ListViewItem ?或者我必须以字符串形式发送信息并拆分它们?

抱歉英语不好..提前谢谢:)

Im making a file manager (Server-Client application) so i can mess with remote computer files
im using listview to watch the remote files
Is there anyway possible to send a ListViewItem over a TCP Socket ? or i have to send information as a string and split them?

sorry for bad english.. thanks in advance :)

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

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

发布评论

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

评论(1

栖迟 2025-01-12 21:15:11

TCP套接字是TCP协议的端点。 TCP 协议传输您可能想要传输的任何二进制数据。您可以将结构序列化为可以通过网络传输的形式。

在 .NET 中序列化类的方法有多种,例如二进制序列化、XML 序列化和许多第三方库以及手动序列化。

ListViewItem 通过实现 ISerialized 接口显式支持二进制序列化。如何使用它的示例可以在此处此处

TCP socket is an endpoint for TCP protocol. TCP protocol transmits any binary data you might want to transmit. It is up to you to serialize your structures in a form that you can transmit over the wire.

There are several ways to serialize classes in .NET, such as binary serialization, XML serialization, and many third party libraries as well as manually.

ListViewItem explicitly supports binary serialization by implementing ISerializable interface. Examples how to use it can be found here and here:

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