我如何通过 Wifi 网络传递 NSData 对象?

发布于 2024-11-09 12:39:35 字数 83 浏览 0 评论 0原文

我如何通过 Wifi 网络传递 NSData 对象?任何人都可以为我提供通过 Wifi 发送和接收 NSData 的代码。或任何示例代码/应用程序参考。

How can i pass NSData object over Wifi network? can any one provide me the code to send and receive the NSData over Wifi.or any sample code/app reference .

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

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

发布评论

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

评论(2

他是夢罘是命 2024-11-16 12:39:35

假设您通常知道如何发送数据,代码如下:

uint8_t *bytes = (uint8_t)[myData bytes];
size_t length = [myData length];

sendBytesWithLength(bytes, length);

在接收方,您重新生成 NSData 对象,如下所示:

uint8_t *bytes = ; // Get the bytes from somewhere...
size_t length = ; // And the length

NSData *data = [[NSData alloc] initWithBytes:(const void *)bytes length:length];

Assuming that you know how to send data in general, here is the code:

uint8_t *bytes = (uint8_t)[myData bytes];
size_t length = [myData length];

sendBytesWithLength(bytes, length);

On the receiver side you regenerate your NSData object like this:

uint8_t *bytes = ; // Get the bytes from somewhere...
size_t length = ; // And the length

NSData *data = [[NSData alloc] initWithBytes:(const void *)bytes length:length];
酒与心事 2024-11-16 12:39:35

您是否尝试过首先查看 Bonjour 参考资料来建立连接?这应该会引导您选择其他网络通信选项。

Have you tried looking at the Bonjour references in the first place to set up the connection? That should lead you on to the other options for network communication.

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