ReadContentAsDateTime XMLTextReader 的正确格式是什么

发布于 2024-11-17 00:28:58 字数 130 浏览 2 评论 0 原文

我正在使用 XMLTextReader 从 xml 文件中提取信息。现在我想使用 ReadContentAsDateTime 但它总是会出现异常。我已经尝试过 2005.9.26、2005/9/26 和 2005,9,26。有人知道正确的格式吗?

I am using XMLTextReader to extract information out of a xml file. Now I want to use ReadContentAsDateTime but it always throughs an exception. I already tried 2005.9.26, 2005/9/26 and 2005, 9, 26. Does somebody know the correct format for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此刻的回忆 2024-11-24 00:28:58

请注意,XmlReader.ReadContentAsDateTime 文档包括:

如果内容的类型不是 xsd:dateTime,则读取器会尝试根据 W3C XML 架构第 2 部分:数据类型建议

ISO 8601yyyy-MM-ddThh:mm:ss.hhhhhhhhyyyyMMddThhmmsshhhhhhh(首选前者)使用 T 分隔日期和时间。有多种方法可以截断(不需要包含秒的小数部分)并包含时区信息。

Note that the XmlReader.ReadContentAsDateTime documentation includes:

If the content is not typed xsd:dateTime, the reader attempts to convert it to a DateTime object according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation

That is ISO 8601: yyyy-MM-ddThh:mm:ss.hhhhhhh or yyyyMMddThhmmsshhhhhhh (former prefered) using T to separate date and time. There are various ways to truncate (don't need to include fractions of seconds) and include time zone information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文