NSDateFormatter转换时间字符串时的时区问题

使用NSDateFormatter转换时间字符串时,默认的时区是系统时区,如我们使用一般都是北京时间(+8),

如果直接使用

[cpp]  view plain copy print ?
  1. [dateFormatter dateFromString:@"2012-01-01 00:00:00"];  
你会发现实际转换为2011-12-31 16:00:00,少了8小时

所以我们要先指定时区为GMT再转换,如下:

[cpp]  view plain copy print ?
  1. static NSString *GLOBAL_TIMEFORMAT = @"yyyy-MM-dd HH:mm:ss";  
  2. static NSString *GLOBAL_TIMEBASE = @"2012-01-01 00:00:00";  
  3.   
  4.     NSTimeZone* localzone = [NSTimeZone localTimeZone];  
  5.     NSTimeZone* GTMzone = [NSTimeZone timeZoneForSecondsFromGMT:0];  
  6.     NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];  
  7.     [dateFormatter setDateFormat:GLOBAL_TIMEFORMAT];  
  8.     [dateFormatter setTimeZone:GTMzone];  
  9.     NSDate *bdate = [dateFormatter dateFromString:GLOBAL_TIMEBASE];  
  10.   
  11.     NSDate *day = [NSDate dateWithTimeInterval:3600 sinceDate:bdate];  
  12.           
  13.     [dateFormatter setTimeZone:localzone];  
  14.     NSLog(@"CurrentTime = %@", [dateFormatter stringFromDate:day]);  


还可以如下:

[cpp]  view plain copy print ?
  1. NSTimeZone* localzone = [NSTimeZone localTimeZone];  
  2. NSTimeZone* GTMzone = [NSTimeZone timeZoneForSecondsFromGMT:0];  
  3. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];  
  4. [dateFormatter setDateFormat:GLOBAL_TIMEFORMAT];  
  5. [dateFormatter setTimeZone:GTMzone];  
  6. NSDate *bdate = [dateFormatter dateFromString:GLOBAL_TIMEBASE];  
  7. NSDate *day = [NSDate dateWithTimeInterval:(3600 + [localzone secondsFromGMT]) sinceDate:bdate];  
  8. NSString *text = [dateFormatter stringFromDate:day];  

你可能感兴趣的:(时间,时区,nsdateformatter)