从服务器的响应流中检索文件内容并写入文件

时间:2013-02-01 11:40:37

标签: ios objective-c

我使用此代码从服务器获取数据:

AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithRequest:request
         success:^(AFHTTPRequestOperation *operation, id responseObject){}
         failure:^(AFHTTPRequestOperation *operation, NSError *error){}];

operation.outputStream = [NSOutputStream outputStreamToFileAtPath:
       [DOCUMENTS_FOLDER stringByAppendingPathComponent:@"test.m4v"] append:YES];

问题是:服务器发送了512 KB数据,但写入的数据超过900 KB。我认为原因是:它将每个字节的十六进制表示写入文件NOT BINARY。

请帮忙:如何写BINARY数据?

0 个答案:

没有答案