我想上传存储在我的应用程序文档文件夹中的文件(不同格式)。我在选择一行时列出了表格视图中的所有文件,我试图上传该行中的文件。这是我的代码
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *urlString;
if (indexPath.section == 0)
{
fileUrlToUpload = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:documents[indexPath.row] ofType:nil]];
}
else
{
fileUrlToUpload = [self.documentURLs objectAtIndex:indexPath.row];
}
[self setupDocumentControllerWithURL:fileUrlToUpload];
urlString = [[fileUrlToUpload path] lastPathComponent];
printf("\n the string is :%s",[urlString UTF8String]);
[self publishToServer:urlString];
-(void)publishToServer:(NSString *)str
{
if([str length] > 0)
{
NSString *urlPath=@"";
urlPath= str;
NSString *urlString = @"http://162.108.0.8:8080/Path/upload_path.jsp?";
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 *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"path\"\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithString:urlPath] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@--",boundary] dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]];
[request setHTTPBody:postBody];
NSLog(@"request === %@",request);
NSData *returnData =nil;
returnData= [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSLog(@"returnData === %@",returnData);
NSString * string=[[NSString alloc]initWithData:returnData encoding:NSUTF8StringEncoding];
}
1)当我试图从模拟器发布文件时,一个空值存储在服务器数据库中,我收到“上传成功”作为响应。
2)当我尝试从设备发布文件时,我什至没有在服务器中获得空值。
请帮我。
谢谢