歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

iOS 實現斷點續傳 一 nsurlconnection

NSUrlConnection實現斷點續傳的關鍵是自定義http request的頭部的range域屬性。

 Range頭域
  Range頭域可以請求實體的一個或者多個子范圍。例如,
  表示頭500個字節:bytes=0-499
  表示第二個500字節:bytes=500-999
  表示最後500個字節:bytes=-500
  表示500字節以後的范圍:bytes=500-
  第一個和最後一個字節:bytes=0-0,-1
  同時指定幾個范圍:bytes=500-600,601-999
  但是服務器可以忽略此請求頭,如果無條件GET包含Range請求頭,響應會以狀態碼206(PartialContent)返回而不是以200(OK)。

在ios中使用NSMutableURLRequest來定義頭部域
  1. NSURL *url1=[NSURL URLWithString:@"下載地址";  
  2. NSMutableURLRequest* request1=[NSMutableURLRequest requestWithURL:url1];  
  3. [request1 setValue:@"bytes=20000-" forHTTPHeaderField:@"Range"];   
  4. [request1 setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];  
  5. NSData *returnData1 = [NSURLConnection sendSynchronousRequest:request1 returningResponse:nil error:nil];   
  6. [self writeToFile:returnData1 fileName:@"SOMEPATH"];  
  7.   
  8.   
  9.   
  10.   
  11. -(void)writeToFile:(NSData *)data fileName:(NSString *) fileName  
  12. {  
  13.     NSString *filePath=[NSString stringWithFormat:@"%@",fileName];  
  14.     if([[NSFileManager defaultManager] fileExistsAtPath:filePath] == NO){  
  15.         NSLog(@"file not exist,create it...");  
  16.         [[NSFileManager defaultManager] createFileAtPath:filePath contents:nil attributes:nil];  
  17.     }else {  
  18.     NSLog(@"file exist!!!");  
  19.     }  
  20.   
  21.     FILE *file = fopen([fileName UTF8String], [@"ab+" UTF8String]);  
  22.   
  23.     if(file != NULL){  
  24.         fseek(file, 0, SEEK_END);  
  25.     }  
  26.     int readSize = [data length];  
  27.     fwrite((const void *)[data bytes], readSize, 1, file);  
  28.     fclose(file);  
  29. }  
Copyright © Linux教程網 All Rights Reserved