2013-11-02 3 views
1

서버 경로에 직접 이미지를 저장하려는 하나의 응용 프로그램에서 작업하고 있습니다. 아래 코드를 사용하고 있지만 그 경로에 이미지를 저장하지 않습니다. 서버에서 응답은 멀티 파트 요청 형식으로 디그 할 필요가 없습니다 당신은 AFNetworking를 사용할 수있는 서버 경로에ios 응용 프로그램에서 서버로 이미지 업로드

NSData *imageData = UIImageJPEGRepresentation(image, 90); 
// setting up the URL to post to 
NSString *urlString = @"http://192.0.168.109/Mobile_tutor/webservice/images/questions/"; 

// setting up the request object now 
request = [[NSMutableURLRequest alloc] init]; 
[request setURL:[NSURL URLWithString:urlString]]; 
[request setHTTPMethod:@"POST"]; 

/* 
add some header info now 
we always need a boundary when we post a file 
also we need to set the content type 

You might want to generate a random boundary.. this is just the same 
as my output from wireshark on a valid html post 
*/ 
NSString *boundary = [NSString stringWithString:@"---------------------------14737809831466499882746641449"]; 
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary]; 
[request addValue:contentType forHTTPHeaderField: @"Content-Type"]; 

/* 
now lets create the body of the post 
*/ 
NSMutableData *body = [NSMutableData data]; 
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; 
[body appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"ipodfile.jpg\"\r\n"] 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]]; 
// setting the body of the post to the reqeust 
[request setHTTPBody:body]; 

// now lets make the connection to the web 
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil]; 
NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding]; 

NSLog(@"--response string -%@",returnString); 
+0

무엇이 작동하고 작동하지 않는지에 대한 세부 정보를 제공하십시오. 어떤 오류가 발생합니까? – Wain

답변

7

을 NULL이 아닌 savig 이미지를오고있다.

AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://192.0.168.109"]]; 
NSDictionary *simpleParams = @{ @"key": @"value" }; 
NSMutableURLRequest* request = [client multipartFormRequestWithMethod:@"POST" path:@"/Mobile_tutor/webservice/images/questions/" parameters: simpleParams constructingBodyWithBlock:^(id<AFMultipartFormData> formData) { 

     [formData appendPartWithFileData:fileData 
            name:@"paramName" 
           fileName:@"filename.png" 
           mimeType:@"image/png"]; 
    }]; 

그런 다음 예상되는 응답에 따라 작업을 생성하십시오. 예를 들어 JSON이 필요한 경우 :

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) { 

    // handle success 

} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) { 

    // handle error 

}]; 

자세한 내용은 AFNetworking documentation에서 확인할 수 있습니다.

관련 문제