C# 中解析此日期格式“Mon Oct 07 00:00:00 EDT 2013”的正确方法是啥?
Posted
技术标签:
【中文标题】C# 中解析此日期格式“Mon Oct 07 00:00:00 EDT 2013”的正确方法是啥?【英文标题】:What is the correct way in C# to parse this date format "Mon Oct 07 00:00:00 EDT 2013"?C# 中解析此日期格式“Mon Oct 07 00:00:00 EDT 2013”的正确方法是什么? 【发布时间】:2015-02-23 04:47:47 【问题描述】:我从服务器收到一条 json 消息,我正在尝试将其解析为 C# 对象。我是using the RestSharp Deserializer。有一个字段未正确转换为日期时间:
此消息中字段的字符串值为:
"createDateTime":"Mon Oct 07 00:00:00 EDT 2013"
在我的对象上我有这个:
public DateTime? createDateTime get; set;
注意:这是一个可为空的 DateTime,因为该字段是空白的
但是当我这样做时:
var deSerializer = new JsonDeserializer();
var response = client.Execute(request);
var responseObj = _deSerializer .Deserialize<Response>(response);
return responseObj;
我意识到根本原因是 DateTime.Parse 失败。我尝试添加它导致它使用
DateTime.ParseExact()
_deserializer.DateFormat = "ddd MMM dd HH:mm:ss zzz yyyy";
但随后我收到一条错误消息:
字符串未被识别为有效的日期时间。
所以这一切都归结为如何在 C# 中解析以这种格式传入的日期
Mon Oct 07 00:00:00 EDT 2013
【问题讨论】:
该日期的 JSON 格式为"2013-10-06T15:00:00.000Z"
。也许您的 JSON 的来源是错误地序列化日期?
您可能想尝试使用msdn.microsoft.com/en-us/library/…手动解析您的日期
@matthew5025 - 查看我更新的问题。我已经添加了一个特定的日期格式,它看起来像你建议的那样做同样的事情,但我得到了上面列出的一个例外
@JLRishe - 我已经更新了这个问题,只关注 DateTime.ParseExact 问题,因为这个问题似乎不太关注 json 反序列化,更多的是关于我如何解析以该格式出现的日期
三个字母的时区?祝你好运! codeblog.jonskeet.uk/2009/11/02/…
【参考方案1】:
因为就我而言,我并不真正关心时间,而且时区总是在 EDT,所以我写这篇文章是为了在短期内解决这个问题。
private DateTime? ParseMe(string s)
var split = s.Split(new[] ' ',StringSplitOptions.RemoveEmptyEntries);
var year = int.Parse(split[split.Count()-1]);
var day = int.Parse(split[2]);
var month = split[1];
int monthInDigit = DateTime.ParseExact(month, "MMM", CultureInfo.InvariantCulture).Month;
return new DateTime(year, monthInDigit, day);
【讨论】:
以上是关于C# 中解析此日期格式“Mon Oct 07 00:00:00 EDT 2013”的正确方法是啥?的主要内容,如果未能解决你的问题,请参考以下文章