与服务器同步数据时,如何做到只更新被修改数据?如何节约流量,

9 篇文章 0 订阅
8 篇文章 0 订阅

RT,大致步骤如下:

  1. 1、Create a HTTP HEAD request.
  2. 2、Read the "Last-Modified" header and convert the string to a NSDate.
  3. 3、Read the last modification timestamp of the local file.
  4. 4、Compare the two timstamps.
  5. 5、Download the file from the server if it has been updated.
  6. 6、Save the downloaded file.
  7. 7、Set the last modification timestamp of the file to match the "Last-Modified" header on the server

  1. - (void)downloadFileIfUpdated {    
  2.     NSString *urlString = ... your URL ...    
  3.     DLog(@"Downloading HTTP header from: %@", urlString);    
  4.     NSURL *url = [NSURL URLWithString:urlString];    
  5.     
  6.     NSString *cachedPath = ... path to your cached file ...    
  7.     NSFileManager *fileManager = [NSFileManager defaultManager];    
  8.     
  9.     BOOL downloadFromServer = NO;    
  10.     NSString *lastModifiedString = nil;    
  11.     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];    
  12.     [request setHTTPMethod:@"HEAD"];    
  13.     NSHTTPURLResponse *response;    
  14.     [NSURLConnection sendSynchronousRequest:request returningResponse:&response error: nil];    
  15.     if ([response respondsToSelector:@selector(allHeaderFields)]) {    
  16.         lastModifiedString = [[response allHeaderFields] objectForKey:@"Last-Modified"];    
  17.     }    
  18.     
  19.     NSDate *lastModifiedServer = nil;    
  20.     @try {    
  21.         NSDateFormatter *df = [[NSDateFormatter alloc] init];    
  22.         df.dateFormat = @"EEE',' dd MMM yyyy HH':'mm':'ss 'GMT'";    
  23.         df.locale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease];    
  24.         df.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];    
  25.         lastModifiedServer = [df dateFromString:lastModifiedString];    
  26.     }    
  27.     @catch (NSException * e) {    
  28.         NSLog(@"Error parsing last modified date: %@ - %@", lastModifiedString, [e description]);    
  29.     }    
  30.     DLog(@"lastModifiedServer: %@", lastModifiedServer);    
  31.     
  32.     NSDate *lastModifiedLocal = nil;    
  33.     if ([fileManager fileExistsAtPath:cachedPath]) {    
  34.         NSError *error = nil;    
  35.         NSDictionary *fileAttributes = [fileManager attributesOfItemAtPath:cachedPath error:&error];    
  36.         if (error) {    
  37.             NSLog(@"Error reading file attributes for: %@ - %@", cachedPath, [error localizedDescription]);    
  38.         }    
  39.         lastModifiedLocal = [fileAttributes fileModificationDate];    
  40.         DLog(@"lastModifiedLocal : %@", lastModifiedLocal);    
  41.     }    
  42.     
  43.     // Download file from server if we don't have a local file    
  44.     if (!lastModifiedLocal) {    
  45.         downloadFromServer = YES;    
  46.     }    
  47.     // Download file from server if the server modified timestamp is later than the local modified timestamp    
  48.     if ([lastModifiedLocal laterDate:lastModifiedServer] == lastModifiedServer) {    
  49.         downloadFromServer = YES;    
  50.     }    
  51.     
  52.     if (downloadFromServer) {    
  53.         DLog(@"Downloading new file from server");    
  54.         NSData *data = [NSData dataWithContentsOfURL:url];    
  55.         if (data) {    
  56.             // Save the data    
  57.             if ([data writeToFile:cachedPath atomically:YES]) {    
  58.                 DLog(@"Downloaded file saved to: %@", cachedPath);    
  59.             }    
  60.     
  61.             // Set the file modification date to the timestamp from the server    
  62.             if (lastModifiedServer) {    
  63.                 NSDictionary *fileAttributes = [NSDictionary dictionaryWithObject:lastModifiedServer forKey:NSFileModificationDate];    
  64.                 NSError *error = nil;    
  65.                 if ([fileManager setAttributes:fileAttributes ofItemAtPath:cachedPath error:&error]) {    
  66.                     DLog(@"File modification date updated");    
  67.                 }    
  68.                 if (error) {    
  69.                     NSLog(@"Error setting file attributes for: %@ - %@", cachedPath, [error localizedDescription]);    
  70.                 }    
  71.             }    
  72.         }    
  73.     }    
  74. }    

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值