iPhone:上传图片到 web aspx 文件
Posted
技术标签:
【中文标题】iPhone:上传图片到 web aspx 文件【英文标题】:iPhone : upload image to web aspx file 【发布时间】:2011-03-22 22:18:54 【问题描述】:我有一个小问题。 我必须使用 POST 方法将照片从我的 iPhone 上传到网络服务器,但服务器文件是 aspx 格式的。 我用我的服务器和 php 文件尝试了我的代码:效果很好! 现在使用 aspx 文件:不上传 :(
我没有 .aspx 的访问权限。
这是我的 iphone 代码:
NSData *imageData = UIImageJPEGRepresentation(imageView.image,70);
NSString *urlString = @"http://iphone.domain.net/upload_photos.aspx";
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
NSString *boundary = [NSString stringWithString:@"---------------------------14737809831466499882746641449"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"photo\"; filename=\"%@.jpg\"\r\n",[c nom]] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:imageData]];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:body];
我认为问题来自 Content-Type 或我的 dataUsingEncoding: 参数。 你有解决它的想法吗?
【问题讨论】:
顺便说一句,您确定 aspx 首先可以使用您在此处传递的确切参数吗? 你能指定[c nom]
中的内容吗?
[c nom] 只是一个 NSString 来命名我的文件“%@.jpg”我不知道 aspx 文件我看不下去:(
我看到它是文件名 ;-) 只是想知道它是什么。如果你放一些废话,事情就会破裂。 (想想换行符或引号)
您可以通过使用常规方式上传内容,使用 html 表单来测试 aspx。
【参考方案1】:
如果您不反对使用第 3 方库,请考虑查看 ASIHttpRequest。它会让你的生活变得更轻松:
http://allseeing-i.com/ASIHTTPRequest/
http://allseeing-i.com/ASIHTTPRequest/How-to-use
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
// Upload a file on disk
[request setFile:@"/Users/ben/Desktop/ben.jpg" withFileName:@"myphoto.jpg" andContentType:@"image/jpeg"
forKey:@"photo"];
// Upload an NSData instance
[request setData:imageData withFileName:@"myphoto.jpg" andContentType:@"image/jpeg" forKey:@"photo"];
【讨论】:
谢谢。我试过但没有用 :( 我写道:ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:urlString]]; [request setData:imageData withFileName:@"myImage.png" andContentType:@"image/png" forKey :@"照片"]; 你真的发送请求了吗? [请求开始同步]; 是的。问题解决了,是公司的服务器很烂-_-【参考方案2】:通常,当在Content-Type
中指定时,边界不包含---
。除此之外,看不出有什么异常。
【讨论】:
所以我必须这样写: NSString *boundary = [NSString stringWithString:@"14737809831466499882746641449"]; ? 是的,甚至是NSString *boundary = @"14737809831466499882746641449";
【参考方案3】:
尝试从命令行使用curl 将其上传到aspx 服务器。完成该工作后,传递 -v
(详细)或 -i
(包括 HTTP 标头)以检查正在发送的确切内容,然后您可以尝试在 Cocoa 中复制它。
【讨论】:
以上是关于iPhone:上传图片到 web aspx 文件的主要内容,如果未能解决你的问题,请参考以下文章