ios - 将图像从 ios 应用程序上传到服务器

标签 ios cocoa-touch uiapplication

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

8年前关闭。




Improve this question




我正在开发一个应用程序,我想在其中将图像直接保存在服务器路径上。我正在使用下面的代码,但它没有在该路径上保存图像。
来自服务器的响应是 NUll,而不是在服务器路径中保存图像

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);

最佳答案

您可以使用 AFNetworking,因此您不必深入研究多部分请求格式。

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 中获取更多信息.

关于ios - 将图像从 ios 应用程序上传到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19742127/

相关文章:

cocoa-touch - cocoa 异常(exception)文档

ios - 见地不尊重约束,这是为什么呢?

ios - 快速请求通知权限(iOS 7)

ios - 保存自定义相机捕获图像 iOS Xcode

html - Bootstrap 导航栏不会在 iPhone 上折叠

iphone - 布局具有大小约束的 UIView subview

ios - UIApplication 的 `beginIgnoringInteractionEvents` 不工作

iphone - 检测何时显示 MapView 瓦片

ios - 快速控制应用程序流

ios - 从后台线程检索应用程序状态?