将图像发送到多部分iphone中的服务器

时间:2011-04-14 07:13:59

标签: iphone image

我想将图像作为多部分数据发送到服务器。

数据必须在标题部分汇总,而不是在正文部分 和Content-Disposition:部分必须留空。

任何代码都是真正的appreaciated。 提前致谢

例如

NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];

我想在内容类型中附加数据。如何对边界进行边界=%@所以对于数据的联合使用什么关键字? _ =%@。?

1 个答案:

答案 0 :(得分:0)

看看TTURLRequest如何在这里做到这一点:

http://google.com/codesearch/p?hl=en#paiB7gGbH1E/trunk/Projects/three20/src/TTURLRequest.m&q=TTURLRequest.m%20multipart&sa=N&cd=1&ct=rc

ASIHTTPRequest如何在此处执行此操作:

http://google.com/codesearch/p?hl=en#puVSP9AmSPI/Classes/ASIFormDataRequest.m&q=ASIHTTPRequest.m%20multipart&sa=N&cd=2&ct=rc

更好的是,使用这两个库中的一个来为你处理多部分帖子。