gpt4 book ai didi

ios - JSON字符串转NSDate出现错误

转载 作者:行者123 更新时间:2023-11-29 01:37:32 25 4
gpt4 key购买 nike

这是我收到的需要转换为 NSDate 的 json 字符串值:

2017-04-08T13:51:00.000+03:00

这里是我转换为 NSDate:

+ (NSDate *)stringDateToDate:(NSString *)aStringDate
{
NSDate *date = nil;

NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss:SSS"];

date = [dateFormat dateFromString:aStringDate];
NSLog(@"nsdate: %@", date);

return date;
}

结果它记录:

nsdate: (null)

似乎日期格式不正确。如何解决该问题?

最佳答案

使用下面的日期格式化字符串

"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ"

它使用 ZZZZZ 作为时区/时区/时间偏移量 - 例如+03:00
SSS 表示小数秒 - 例如123
最重要的是在秒及其分数之间使用 . 而不是 :

Thanks to rmaddy for correcting the number of S and Z to meet the exact required input

请注意,您可以使用 SZ 而不是 SSSZZZZZ,因为解析器足够聪明,无论如何都可以解析它。如果您想从日期创建字符串,则需要上述日期格式化程序字符串。

"yyyy-MM-dd'T'HH:mm:ss.SZ"

enter image description here

More details on date formatter strings can be found in the unicode section for
Date Format Patterns

关于ios - JSON字符串转NSDate出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32808470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com