作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我必须通过 Cocoa Sockets (AsyncSockets) 发送 PNG 图像,但无法正确发送,Firefox 告诉我图像已损坏,而 Chrome 没有显示任何内容。我使用这段代码:
content = [NSData dataWithContentsOfFile:filePath];
data = [[NSString stringWithFormat:@"HTTP/1.1 %@\nContent-Type: %@\n\n\n ", responseCode, contententType] dataUsingEncoding:NSUTF8StringEncoding];
[sock writeData:data withTimeout:-1 tag:1];
[sock writeData:[NSData dataWithBytes:[content bytes] length:[content length]] withTimeout:-1 tag:1];
如您所见,我先发送 header ,然后发送 NSData 字节和长度,但我无法正确获取 PNG 图像!我做错了什么?
最佳答案
行尾错误,应该是\r\n,而不是\n。
关于cocoa - 将 PNG 图像转换为可以通过 NSSockets 发送的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8203014/
我必须通过 Cocoa Sockets (AsyncSockets) 发送 PNG 图像,但无法正确发送,Firefox 告诉我图像已损坏,而 Chrome 没有显示任何内容。我使用这段代码: con
我对 Python 几乎一无所知,但我正在尝试快速学习 NSSockets 教程;并且使用python。这是 python 脚本。脚本在 python2 中,但我必须在 python 3 下运行它。
我在 iOS 处理动画 GIF 的方式上遇到了问题。我知道您不能在 UIImageView 上使用动画 GIF,而必须在 UIImageView 上使用自定义动画。 但是.. 我有一个通过套接字流发送
我是一名优秀的程序员,十分优秀!