iOS開發網路篇—檔案的上傳

來源:互聯網
上載者:User

標籤:

說明:檔案上傳使用的時POST請求,通常把要上傳的資料儲存在請求體中。本文介紹如何不藉助第三方架構實現iOS開發中得檔案上傳。

  由於過程較為複雜,因此本文只貼出部分關鍵代碼。

主控制器的關鍵代碼:

YYViewController.m

 1 #import "YYViewController.h" 2  3 #define YYEncode(str) [str dataUsingEncoding:NSUTF8StringEncoding] 4  5 @interface YYViewController () 6  7 @end 8  9 @implementation YYViewController10 11 - (void)viewDidLoad12 {13     [super viewDidLoad];14     // Do any additional setup after loading the view, typically from a nib.15 }16 17 - (void)upload:(NSString *)name filename:(NSString *)filename mimeType:(NSString *)mimeType data:(NSData *)data parmas:(NSDictionary *)params18 {19     // 檔案上傳20     NSURL *url = [NSURL URLWithString:@"http://192.168.1.200:8080/YYServer/upload"];21     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];22     request.HTTPMethod = @"POST";23     24     // 佈建要求體25     NSMutableData *body = [NSMutableData data];26     27     /***************檔案參數***************/28     // 參數開始的標誌29     [body appendData:YYEncode(@"--YY\r\n")];30     // name : 指定參數名(必須跟伺服器端保持一致)31     // filename : 檔案名稱32     NSString *disposition = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n", name, filename];33     [body appendData:YYEncode(disposition)];34     NSString *type = [NSString stringWithFormat:@"Content-Type: %@\r\n", mimeType];35     [body appendData:YYEncode(type)];36     37     [body appendData:YYEncode(@"\r\n")];38     [body appendData:data];39     [body appendData:YYEncode(@"\r\n")];40     41     /***************普通參數***************/42     [params enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {43         // 參數開始的標誌44         [body appendData:YYEncode(@"--YY\r\n")];45         NSString *disposition = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n", key];46         [body appendData:YYEncode(disposition)];47 48         [body appendData:YYEncode(@"\r\n")];49         [body appendData:YYEncode(obj)];50         [body appendData:YYEncode(@"\r\n")];51     }];52     53     /***************參數結束***************/54     // YY--\r\n55     [body appendData:YYEncode(@"--YY--\r\n")];56     request.HTTPBody = body;57     58     // 佈建要求頭59     // 請求體的長度60     [request setValue:[NSString stringWithFormat:@"%zd", body.length] forHTTPHeaderField:@"Content-Length"];61     // 聲明這個POST請求是個檔案上傳62     [request setValue:@"multipart/form-data; boundary=YY" forHTTPHeaderField:@"Content-Type"];63     64     // 發送請求65     [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {66         if (data) {67             NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];68             NSLog(@"%@", dict);69         } else {70             NSLog(@"上傳失敗");71         }72     }];73 }74 75 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event76 {77     // Socket 實現斷點上傳78     79     //apache-tomcat-6.0.41/conf/web.xml 尋找 檔案的 mimeType80 //    UIImage *image = [UIImage imageNamed:@"test"];81 //    NSData *filedata = UIImagePNGRepresentation(image);82 //    [self upload:@"file" filename:@"test.png" mimeType:@"image/png" data:filedata parmas:@{@"username" : @"123"}];83     84     // 給本地檔案發送一個請求85     NSURL *fileurl = [[NSBundle mainBundle] URLForResource:@"itcast.txt" withExtension:nil];86     NSURLRequest *request = [NSURLRequest requestWithURL:fileurl];87     NSURLResponse *repsonse = nil;88     NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&repsonse error:nil];89     90     // 得到mimeType91     NSLog(@"%@", repsonse.MIMEType);92     [self upload:@"file" filename:@"itcast.txt" mimeType:repsonse.MIMEType data:data parmas:@{93                                                                                               @"username" : @"999",94                                                                                               @"type" : @"XML"}];95 }96 97 @end

補充說明:

檔案上傳請求資料格式

部分檔案的MIMEType

iOS開發網路篇—檔案的上傳

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.