我想从我的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";
}
?>
请给我一些建议,我应该在哪里更改代码或我错在哪里?
答案 0 :(得分:2)
在我看来,您要将文件发布为userfile
,并尝试将其作为uploaded
读取服务器端。
制作这个制服,它应该有效。
答案 1 :(得分:0)
我知道这有点晚了:
我没看到你给我们的服务器类型。
如果使用unix或linux服务器。许多人,包括我自己,忘记检查是您正在使用的目录的权限。 您希望确保拥有添加,移动和删除文件的适当权限。
通过导航到包含shell上传文件夹的目录并运行以下命令,可以安全地完成此操作:
chown -R nobody YourDirectoryName
chmod -R 755 YourDirectoryName