通过套接字发送图像数据,但到达服务器时接收到某种不同格式的数据
我从图像创建一个 NSData 文件并使用套接字通过服务器发送。
CFWriteStreamWrite(myWriteStream, (const UInt8 *)data, [data length]);
但服务器以不同的格式接收它。并且无法打开文件。
I am create a NSData file from the image and sending over server using socket.
CFWriteStreamWrite(myWriteStream, (const UInt8 *)data, [data length]);
But the server receives it in different format. and unable to open file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码片段中的“数据”类型是什么?
如果它是一个 (NSData *) 对象,你应该这样写:
What's the type of 'data' in your code snippet?
If it was a (NSData *) object, you should write like: