【发布时间】:2011-06-03 08:05:20
【问题描述】:
我想从我的 iphone 应用程序上传一个 plist 文件到我的服务器。我已经尝试了以下代码(发现谷歌搜索),但我的文件仍然没有上传。问题出在哪里?
iphone 应用代码(处理上传的方法):
- (IBAction)sendHTTPPost:(id)sender {
NSString *path = [self pathOfFile];
NSString *fileName = @"Contacts";
NSData *data = [[NSData alloc] initWithContentsOfFile:path];
NSString *urlString = @"http://localhost/ajaxim/fileUpload.php";
//set up request
NSMutableURLRequest *request= [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
//required xtra info
NSString *boundary = @"---------------------------14737809831466499882746641449";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
//body of the post
NSMutableData *postbody = [NSMutableData data];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"%@\"\r\n", fileName] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:data];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:postbody];
//lets make the connection
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
returnString = [returnString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
//NSLog(returnString);
}
服务器的php代码:
<?php
$target = "./upload/";
$target = $target . basename( $_FILES['uploaded']['name']) ;
$ok=1;
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target))
{
echo "YES";
echo "http://localhost/ajaxim/upload/{$target}";
}
else {
echo "Not uploaded";
}
?>
请给我一些建议,我应该在哪里更改代码或我哪里错了?
【问题讨论】:
标签: php iphone file-upload